1 16 17 package org.apache.xerces.xni.grammars; 18 19 import org.apache.xerces.xni.QName; 20 import org.apache.xerces.xni.XMLAttributes; 21 22 29 public interface XMLSchemaDescription extends XMLGrammarDescription { 30 31 36 public final static short CONTEXT_INCLUDE = 0; 37 41 public final static short CONTEXT_REDEFINE = 1; 42 46 public final static short CONTEXT_IMPORT = 2; 47 50 public final static short CONTEXT_PREPARSE = 3; 51 57 public final static short CONTEXT_INSTANCE = 4; 58 65 public final static short CONTEXT_ELEMENT = 5; 66 73 public final static short CONTEXT_ATTRIBUTE = 6; 74 81 public final static short CONTEXT_XSITYPE = 7; 82 83 89 public short getContextType(); 90 91 98 public String getTargetNamespace(); 99 100 108 public String [] getLocationHints(); 109 110 117 public QName getTriggeringComponent(); 118 119 125 public QName getEnclosingElementName(); 126 127 133 public XMLAttributes getAttributes(); 134 135 } | Popular Tags |