OSDN Git Service

Normalise whitespace in GNU Classpath.
[pf3gnuchains/gcc-fork.git] / libjava / classpath / external / sax / org / xml / sax / ext / DefaultHandler2.java
index 2b792e9..bf47ea8 100644 (file)
@@ -45,52 +45,52 @@ public class DefaultHandler2 extends DefaultHandler
 
     public void startCDATA ()
     throws SAXException
-       {}
+        {}
 
     public void endCDATA ()
     throws SAXException
-       {}
+        {}
 
     public void startDTD (String name, String publicId, String systemId)
     throws SAXException
-       {}
+        {}
 
     public void endDTD ()
     throws SAXException
-       {}
+        {}
 
     public void startEntity (String name)
     throws SAXException
-       {}
+        {}
 
     public void endEntity (String name)
     throws SAXException
-       {}
+        {}
 
     public void comment (char ch [], int start, int length)
     throws SAXException
-       { }
+        { }
 
 
     // SAX2 ext-1.0 DeclHandler
 
     public void attributeDecl (String eName, String aName,
-           String type, String mode, String value)
+            String type, String mode, String value)
     throws SAXException
-       {}
+        {}
 
     public void elementDecl (String name, String model)
     throws SAXException
-       {}
+        {}
 
     public void externalEntityDecl (String name,
-       String publicId, String systemId)
+        String publicId, String systemId)
     throws SAXException
-       {}
+        {}
 
     public void internalEntityDecl (String name, String value)
     throws SAXException
-       {}
+        {}
 
     // SAX2 ext-1.1 EntityResolver2
 
@@ -100,22 +100,22 @@ public class DefaultHandler2 extends DefaultHandler
      */
     public InputSource getExternalSubset (String name, String baseURI)
     throws SAXException, IOException
-       { return null; }
+        { return null; }
 
     /**
      * Tells the parser to resolve the systemId against the baseURI
      * and read the entity text from that resulting absolute URI.
      * Note that because the older
      * {@link DefaultHandler#resolveEntity DefaultHandler.resolveEntity()},
-     * method is overridden to call this one, this method may sometimes 
+     * method is overridden to call this one, this method may sometimes
      * be invoked with null <em>name</em> and <em>baseURI</em>, and
      * with the <em>systemId</em> already absolutized.
      */
     public InputSource resolveEntity (String name, String publicId,
-           String baseURI, String systemId)
+            String baseURI, String systemId)
     throws SAXException, IOException
-       { return null; }
-    
+        { return null; }
+
     // SAX1 EntityResolver
 
     /**
@@ -126,5 +126,5 @@ public class DefaultHandler2 extends DefaultHandler
      */
     public InputSource resolveEntity (String publicId, String systemId)
     throws SAXException, IOException
-       { return resolveEntity (null, publicId, null, systemId); }
+        { return resolveEntity (null, publicId, null, systemId); }
 }