neilg 2003/06/17 20:03:27 Modified: java/src/org/apache/xerces/impl/xs/psvi XSAnnotation.java Log: change order of constant declarations to match comments Revision Changes Path 1.5 +3 -3 xml-xerces/java/src/org/apache/xerces/impl/xs/psvi/XSAnnotation.java Index: XSAnnotation.java =================================================================== RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xs/psvi/XSAnnotation.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- XSAnnotation.java 20 Feb 2003 23:10:41 -0000 1.4 +++ XSAnnotation.java 18 Jun 2003 03:03:27 -0000 1.5 @@ -2,7 +2,7 @@ * The Apache Software License, Version 1.1 * * - * Copyright (c) 2001, 2002 The Apache Software Foundation. All rights + * Copyright (c) 2001-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without @@ -69,11 +69,11 @@ /** * The object type is <code>org.w3c.dom.Document</code>. */ - public static final short SAX_CONTENTHANDLER = 2; + public static final short W3C_DOM_DOCUMENT = 2; /** * The object type is <code>org.xml.sax.ContentHandler</code>. */ - public static final short W3C_DOM_DOCUMENT = 3; + public static final short SAX_CONTENTHANDLER = 3; /** * Write contents of the annotation to the specified DOM object. If the
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]