sandygao    2003/01/06 15:01:03

  Modified:    java/src/org/apache/xerces/impl/xs XSComplexTypeDecl.java
  Log:
  The texts for content types weren't ordered correctly.
  
  Revision  Changes    Path
  1.12      +2 -2      
xml-xerces/java/src/org/apache/xerces/impl/xs/XSComplexTypeDecl.java
  
  Index: XSComplexTypeDecl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xs/XSComplexTypeDecl.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- XSComplexTypeDecl.java    12 Jul 2002 15:49:49 -0000      1.11
  +++ XSComplexTypeDecl.java    6 Jan 2003 23:01:02 -0000       1.12
  @@ -193,7 +193,7 @@
       }
   
       void appendTypeInfo(StringBuffer str) {
  -        String contentType[] = {"EMPTY", "SIMPLE", "MIXED", "ELEMENT"};
  +        String contentType[] = {"EMPTY", "SIMPLE", "ELEMENT", "MIXED"};
           String derivedBy[] = {"EMPTY", "EXTENSION", "RESTRICTION"};
   
           str.append("Complex type name='" + fTargetNamespace + "," + getTypeName() + 
"', ");
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to