You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by je...@locus.apache.org on 2000/10/06 18:40:10 UTC

cvs commit: xml-xerces/java/src/org/apache/xerces/xni XMLDTDContentModelHandler.java

jeffreyr    00/10/06 09:40:10

  Modified:    java/src/org/apache/xerces/xni Tag: xerces_j_2
                        XMLDTDContentModelHandler.java
  Log:
  Constants for XMLDTDContentModelHandler
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.3   +10 -10    xml-xerces/java/src/org/apache/xerces/xni/Attic/XMLDTDContentModelHandler.java
  
  Index: XMLDTDContentModelHandler.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/xni/Attic/XMLDTDContentModelHandler.java,v
  retrieving revision 1.1.2.2
  retrieving revision 1.1.2.3
  diff -u -r1.1.2.2 -r1.1.2.3
  --- XMLDTDContentModelHandler.java	2000/10/02 00:40:16	1.1.2.2
  +++ XMLDTDContentModelHandler.java	2000/10/06 16:40:10	1.1.2.3
  @@ -61,7 +61,7 @@
   
   /**
    * @author Stubs generated by DesignDoc on Mon Sep 11 11:10:57 PDT 2000
  - * @version $Id: XMLDTDContentModelHandler.java,v 1.1.2.2 2000/10/02 00:40:16 lehors Exp $
  + * @version $Id: XMLDTDContentModelHandler.java,v 1.1.2.3 2000/10/06 16:40:10 jeffreyr Exp $
    */
   public interface XMLDTDContentModelHandler {
   
  @@ -70,31 +70,31 @@
       //
   
       /** TYPE_EMPTY */
  -    public static final short TYPE_EMPTY = -1;
  +    public static final short TYPE_EMPTY = 0;
   
       /** TYPE_ANY */
  -    public static final short TYPE_ANY = -1;
  +    public static final short TYPE_ANY = 1;
   
       /** TYPE_MIXED */
  -    public static final short TYPE_MIXED = -1;
  +    public static final short TYPE_MIXED = 2;
   
       /** TYPE_CHILDREN */
  -    public static final short TYPE_CHILDREN = -1;
  +    public static final short TYPE_CHILDREN = 3;
   
       /** SEPARATOR_CHOICE */
  -    public static final short SEPARATOR_CHOICE = -1;
  +    public static final short SEPARATOR_CHOICE = 4;
   
       /** SEPARATOR_SEQUENCE */
  -    public static final short SEPARATOR_SEQUENCE = -1;
  +    public static final short SEPARATOR_SEQUENCE = 5;
   
       /** OCCURS_ZERO_OR_ONE */
  -    public static final short OCCURS_ZERO_OR_ONE = -1;
  +    public static final short OCCURS_ZERO_OR_ONE = 6;
   
       /** OCCURS_ZERO_OR_MORE */
  -    public static final short OCCURS_ZERO_OR_MORE = -1;
  +    public static final short OCCURS_ZERO_OR_MORE = 7;
   
       /** OCCURS_ONE_OR_MORE */
  -    public static final short OCCURS_ONE_OR_MORE = -1;
  +    public static final short OCCURS_ONE_OR_MORE = 8;
   
       //
       // Methods