1 57 58 package com.sun.org.apache.xerces.internal.xni.grammars; 59 60 import com.sun.org.apache.xerces.internal.xni.QName; 61 import com.sun.org.apache.xerces.internal.xni.XMLAttributes; 62 63 70 public interface XMLSchemaDescription extends XMLGrammarDescription { 71 72 77 public final static short CONTEXT_INCLUDE = 0; 78 82 public final static short CONTEXT_REDEFINE = 1; 83 87 public final static short CONTEXT_IMPORT = 2; 88 91 public final static short CONTEXT_PREPARSE = 3; 92 98 public final static short CONTEXT_INSTANCE = 4; 99 106 public final static short CONTEXT_ELEMENT = 5; 107 114 public final static short CONTEXT_ATTRIBUTE = 6; 115 122 public final static short CONTEXT_XSITYPE = 7; 123 124 130 public short getContextType(); 131 132 139 public String getTargetNamespace(); 140 141 149 public String [] getLocationHints(); 150 151 158 public QName getTriggeringComponent(); 159 160 166 public QName getEnclosingElementName(); 167 168 174 public XMLAttributes getAttributes(); 175 176 } | Popular Tags |