You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-cvs@xml.apache.org by mr...@apache.org on 2007/10/14 04:44:03 UTC

svn commit: r584477 - /xml/commons/trunk/java/external/src/javax/xml/XMLConstants.java

Author: mrglavas
Date: Sat Oct 13 19:44:03 2007
New Revision: 584477

URL: http://svn.apache.org/viewvc?rev=584477&view=rev
Log:
Fixing indentation.

Modified:
    xml/commons/trunk/java/external/src/javax/xml/XMLConstants.java

Modified: xml/commons/trunk/java/external/src/javax/xml/XMLConstants.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/XMLConstants.java?rev=584477&r1=584476&r2=584477&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/XMLConstants.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/XMLConstants.java Sat Oct 13 19:44:03 2007
@@ -33,14 +33,13 @@
  * @see <a href="http://www.w3.org/TR/xmlschema-1/">XML Schema Part 1: Structures</a>
  * @since 1.5
  **/
-
 public final class XMLConstants {
-	
+
     /**
      * <p>Private constructor to prevent instantiation.</p>
      */
-	private XMLConstants() {
-	}
+    private XMLConstants() {
+    }
 
     /**
      * <p>Namespace URI to use to represent that there is no Namespace.</p>
@@ -118,7 +117,7 @@
      * Namespaces in XML, 3. Qualified Names</a>
      */
     public static final String XMLNS_ATTRIBUTE = "xmlns";
-    
+
     /**
      * <p>W3C XML Schema Namespace URI.</p>
      * 
@@ -145,14 +144,14 @@
     public static final String W3C_XML_SCHEMA_INSTANCE_NS_URI =
         "http://www.w3.org/2001/XMLSchema-instance";
 
-	/**
-	 * <p>W3C XPath Datatype Namespace URI.</p>
-	 * 
-	 * <p>Defined to be "<code>http://www.w3.org/2003/11/xpath-datatypes</code>".</p>
-	 * 
-	 * @see <a href="http://www.w3.org/TR/xpath-datamodel">XQuery 1.0 and XPath 2.0 Data Model</a>
-	 */
-	public static final String W3C_XPATH_DATATYPE_NS_URI = "http://www.w3.org/2003/11/xpath-datatypes";
+    /**
+     * <p>W3C XPath Datatype Namespace URI.</p>
+     * 
+     * <p>Defined to be "<code>http://www.w3.org/2003/11/xpath-datatypes</code>".</p>
+     * 
+     * @see <a href="http://www.w3.org/TR/xpath-datamodel">XQuery 1.0 and XPath 2.0 Data Model</a>
+     */
+    public static final String W3C_XPATH_DATATYPE_NS_URI = "http://www.w3.org/2003/11/xpath-datatypes";
 
     /**
      * <p>XML Document Type Declaration Namespace URI as an arbitrary value.</p>
@@ -161,28 +160,28 @@
      */
     public static final String XML_DTD_NS_URI = "http://www.w3.org/TR/REC-xml";
 
-	/**
-	 * <p>RELAX NG Namespace URI.</p>
-	 * 
-	 * <p>Defined to be "<code>http://relaxng.org/ns/structure/1.0</code>".</p>
-	 * 
-	 * @see <a href="http://relaxng.org/spec-20011203.html">RELAX NG Specification</a>
-	 */
-	public static final String RELAXNG_NS_URI = "http://relaxng.org/ns/structure/1.0";
-	
-	/**
-	 * <p>Feature for secure processing.</p>
-	 * 
-	 * <ul>
-	 *   <li>
-	 *     <code>true</code> instructs the implementation to process XML securely.
-	 *     This may set limits on XML constructs to avoid conditions such as denial of service attacks.
-	 *   </li>
-	 *   <li>
-	 *     <code>false</code> instructs the implementation to process XML according to the letter of the XML specifications
-	 *     ignoring security issues such as limits on XML constructs to avoid conditions such as denial of service attacks.
-	 *   </li>
-	 * </ul>
-	 */    
-	public static final String FEATURE_SECURE_PROCESSING = "http://javax.xml.XMLConstants/feature/secure-processing";
+    /**
+     * <p>RELAX NG Namespace URI.</p>
+     * 
+     * <p>Defined to be "<code>http://relaxng.org/ns/structure/1.0</code>".</p>
+     * 
+     * @see <a href="http://relaxng.org/spec-20011203.html">RELAX NG Specification</a>
+     */
+    public static final String RELAXNG_NS_URI = "http://relaxng.org/ns/structure/1.0";
+
+    /**
+     * <p>Feature for secure processing.</p>
+     * 
+     * <ul>
+     *   <li>
+     *     <code>true</code> instructs the implementation to process XML securely.
+     *     This may set limits on XML constructs to avoid conditions such as denial of service attacks.
+     *   </li>
+     *   <li>
+     *     <code>false</code> instructs the implementation to process XML according to the letter of the XML specifications
+     *     ignoring security issues such as limits on XML constructs to avoid conditions such as denial of service attacks.
+     *   </li>
+     * </ul>
+     */    
+    public static final String FEATURE_SECURE_PROCESSING = "http://javax.xml.XMLConstants/feature/secure-processing";
 }