Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Dos2unix (second try)
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 18 Dec 2007 10:33:02 +0000 (10:33 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 18 Dec 2007 10:33:02 +0000 (10:33 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@5130 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/java/simgrid/msg/DTDResolver.java

index 7af7bb1..c0eac20 100644 (file)
@@ -1,59 +1,59 @@
-/*
- * simgrid.msg.DTDResolver.java    1.00 07/05/01
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier           
- * All right reserved. 
- *
- * This program is free software; you can redistribute 
- * it and/or modify it under the terms of the license 
- *(GNU LGPL) which comes with this package. 
- */  
-  \r\r\rpackage simgrid.msg;
-\r\rimport java.io.InputStream;
-\rimport org.xml.sax.EntityResolver;
-\rimport org.xml.sax.InputSource;
-\rimport org.xml.sax.SAXException;
-\r\rpublic class DTDResolver implements EntityResolver {
-  \r\rpublic InputSource resolveEntity(String publicID, String systemID) 
-    throws SAXException {
-    \r\r\rif (!systemID.endsWith("surfxml.dtd")) {
-      \rSystem.out.
-        println("\n MSG - Warning - the platform used seams invalid\n");
-      \rreturn null;
-    \r}
+/*\r
+ * simgrid.msg.DTDResolver.java    1.00 07/05/01\r
+ *\r
+ * Copyright 2006,2007 Martin Quinson, Malek Cherier           \r
+ * All right reserved. \r
+ *\r
+ * This program is free software; you can redistribute \r
+ * it and/or modify it under the terms of the license \r
+ *(GNU LGPL) which comes with this package. \r
+ */  \r
+  package simgrid.msg;\r
+import java.io.InputStream;\r
+import org.xml.sax.EntityResolver;\r
+import org.xml.sax.InputSource;\r
+import org.xml.sax.SAXException;\r
+public class DTDResolver implements EntityResolver {\r
+  public InputSource resolveEntity(String publicID, String systemID) \r
+    throws SAXException {\r
+    if (!systemID.endsWith("surfxml.dtd")) {\r
+      System.out.\r
+        println("\n MSG - Warning - the platform used seams invalid\n");\r
+      return null;\r
+    }\r
     \r
     \r
-      /* try to get the DTD from the classpath */ 
-      InputStream in = getClass().getResourceAsStream("/surfxml.dtd");
-    \r\rif (null == in)
-      
-        /* try to get the DTD from the surf dir in the jar */ 
-        in = getClass().getResourceAsStream("/surf/surfxml.dtd");
-    \rif (null == in)
-      
-        /* try to get the DTD from the directory Simgrid */ 
-        in = getClass().getResourceAsStream("/Simgrid/surfxml.dtd");
-    \r\rif (null == in)
-      
-        /* try to get the DTD from the directory Simgrid/msg */ 
-        in = getClass().getResourceAsStream("/Simgrid/msg/surfxml.dtd");
-    \r\rif (null == in) {
-      \rSystem.err.println("\nMSG - XML DTD not found (" +
-                          systemID.toString() +
-                          ").\n\nPlease put this file in one of the following destinations :\n\n"
-                          + \r"   - classpath;\n" +
-                          \r"   - the directory Simgrid;\n" +
-                          \r"   - the directory Simgrid/msg;\n" +
-                          \r"   - the directory of you simulation.\n\n" +
-                          \r"Once the DTD puted in one of the previouse destinations, retry you simulation.\n");
+      /* try to get the DTD from the classpath */ \r
+      InputStream in = getClass().getResourceAsStream("/surfxml.dtd");\r
+    if (null == in)\r
       \r
       \r
-        /* 
-         * If not founded, returning null makes process continue normally (try to get 
-         * the DTD from the current directory 
-         */ 
-        return null;
-    \r}
-    \r\rreturn new InputSource(in);
-  \r}
-\r}
-
-
+        /* try to get the DTD from the surf dir in the jar */ \r
+        in = getClass().getResourceAsStream("/surf/surfxml.dtd");\r
+    if (null == in)\r
+      \r
+        /* try to get the DTD from the directory Simgrid */ \r
+        in = getClass().getResourceAsStream("/Simgrid/surfxml.dtd");\r
+    if (null == in)\r
+      \r
+        /* try to get the DTD from the directory Simgrid/msg */ \r
+        in = getClass().getResourceAsStream("/Simgrid/msg/surfxml.dtd");\r
+    if (null == in) {\r
+      System.err.println("\nMSG - XML DTD not found (" +\r
+                          systemID.toString() +\r
+                          ").\n\nPlease put this file in one of the following destinations :\n\n"\r
+                          + "   - classpath;\n" +\r
+                          "   - the directory Simgrid;\n" +\r
+                          "   - the directory Simgrid/msg;\n" +\r
+                          "   - the directory of you simulation.\n\n" +\r
+                          "Once the DTD puted in one of the previouse destinations, retry you simulation.\n");\r
+      \r
+        /* \r
+         * If not founded, returning null makes process continue normally (try to get \r
+         * the DTD from the current directory \r
+         */ \r
+        return null;\r
+    }\r
+    return new InputSource(in);\r
+  }\r
+}\r
+\r
+\r