home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xml4j.jar / com / ibm / xml / framework / ElementDecl.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-08-30  |  516 b   |  13 lines

  1. package com.ibm.xml.framework;
  2.  
  3. public final class ElementDecl {
  4.    public static final int CONTENTSPEC_UNKNOWN = 0;
  5.    public static final int CONTENTSPEC_EMPTY = 1;
  6.    public static final int CONTENTSPEC_ANY = 2;
  7.    public static final int CONTENTSPEC_MIXED = 3;
  8.    public static final int CONTENTSPEC_CHILDREN = 4;
  9.    public int elementName;
  10.    public int contentSpecType;
  11.    public int contentSpec;
  12. }
  13.