Searched refs:XSTypeDefinition (Results 1 - 25 of 40) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xs/
H A DXSTypeDefinition.java26 public interface XSTypeDefinition extends XSObject { interface in inherits:XSObject
44 public XSTypeDefinition getBaseType();
86 public boolean derivedFromType(XSTypeDefinition ancestorType,
H A DXSComplexTypeDefinition.java26 public interface XSComplexTypeDefinition extends XSTypeDefinition {
H A DItemPSVI.java163 public XSTypeDefinition getTypeDefinition();
H A DXSElementDeclaration.java31 public XSTypeDefinition getTypeDefinition();
H A DXSNamespaceItem.java39 * <code>XSTypeDefinition.SIMPLE_TYPE</code> and
40 * <code>XSTypeDefinition.COMPLEX_TYPE</code> can also be used as the
75 * @return An <code>XSTypeDefinition</code> or <code>null</code> if such
78 public XSTypeDefinition getTypeDefinition(String name);
H A DXSModel.java50 * <code>XSTypeDefinition.SIMPLE_TYPE</code> and
51 * <code>XSTypeDefinition.COMPLEX_TYPE</code> can also be used as the
109 * @return An <code>XSTypeDefinition</code> or <code>null</code> if such
112 public XSTypeDefinition getTypeDefinition(String name,
H A DXSSimpleTypeDefinition.java31 public interface XSSimpleTypeDefinition extends XSTypeDefinition {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSNamedMap4Types.java25 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
89 XSTypeDefinition type;
91 type = (XSTypeDefinition)array[i];
113 XSTypeDefinition type = (XSTypeDefinition)fMaps[i].get(localName);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DSubstitutionGroupHandler.java26 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
115 private boolean typeDerivationOK(XSTypeDefinition derived, XSTypeDefinition base, short blockingConstraint) {
122 XSTypeDefinition type = derived;
124 if (type.getTypeCategory() == XSTypeDefinition.COMPLEX_TYPE) {
136 if (type.getTypeCategory() == XSTypeDefinition.COMPLEX_TYPE) {
142 if (base.getTypeCategory() == XSTypeDefinition.SIMPLE_TYPE) {
148 if (typeDerivationOK(derived, (XSTypeDefinition) memberTypes.item(i), blockingConstraint)) {
309 private boolean getDBMethods(XSTypeDefinition typed, XSTypeDefinition type
[all...]
H A DXSComplexTypeDecl.java50 XSTypeDefinition fBaseType = null;
102 XSTypeDefinition baseType, short derivedBy, short schemaFinal,
211 public boolean derivedFromType(XSTypeDefinition ancestor, short derivationMethod) {
219 XSTypeDefinition type = this;
241 XSTypeDefinition type = this;
247 type = (XSTypeDefinition)type.getBaseType();
355 int derivationMethod, XSTypeDefinition type) {
356 XSTypeDefinition oldType = null;
401 String ancestorName, int derivationMethod, XSTypeDefinition type) {
403 XSTypeDefinition oldTyp
[all...]
H A DAttributePSVImpl.java27 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
46 protected XSTypeDefinition fTypeDecl = null;
157 public XSTypeDefinition getTypeDefinition() {
H A DElementPSVImpl.java29 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
53 protected XSTypeDefinition fTypeDecl = null;
196 public XSTypeDefinition getTypeDefinition() {
H A DXSModelImpl.java50 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
65 private static final short MAX_COMP_IDX = XSTypeDefinition.SIMPLE_TYPE;
291 * <code>XSTypeDefinition.SIMPLE_TYPE</code> and
292 * <code>XSTypeDefinition.COMPLEX_TYPE</code> can also be used as the
311 case XSTypeDefinition.COMPLEX_TYPE:
312 case XSTypeDefinition.SIMPLE_TYPE:
334 if (objectType == XSTypeDefinition.COMPLEX_TYPE ||
335 objectType == XSTypeDefinition.SIMPLE_TYPE) {
390 case XSTypeDefinition.COMPLEX_TYPE:
391 case XSTypeDefinition
[all...]
H A DSchemaGrammar.java59 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
319 XSTypeDefinition [] typeDefinitions = new XSTypeDefinition[length];
322 XSTypeDefinition xtd = typeDefinitions[i];
441 public void addGlobalTypeDecl(XSTypeDefinition decl) {
444 public void addGlobalTypeDecl(XSTypeDefinition decl, String location) {
692 public void addGlobalTypeDecl(XSTypeDefinition decl) {
695 public void addGlobalTypeDecl(XSTypeDefinition decl, String location) {
908 public void addGlobalTypeDecl(XSTypeDefinition decl) {
918 public void addGlobalTypeDecl(XSTypeDefinition dec
[all...]
H A DXSConstraints.java39 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
115 public static boolean checkTypeDerivationOk(XSTypeDefinition derived, XSTypeDefinition base, short block) {
127 if (derived.getTypeCategory() == XSTypeDefinition.SIMPLE_TYPE) {
129 if (base.getTypeCategory() == XSTypeDefinition.COMPLEX_TYPE) {
149 public static boolean checkSimpleDerivationOk(XSSimpleType derived, XSTypeDefinition base, short block) {
158 if (base.getTypeCategory() == XSTypeDefinition.COMPLEX_TYPE) {
174 public static boolean checkComplexDerivationOk(XSComplexTypeDecl derived, XSTypeDefinition base, short block) {
236 private static boolean checkComplexDerivation(XSComplexTypeDecl derived, XSTypeDefinition base, short block) {
246 XSTypeDefinition directBas
[all...]
H A DXSElementDecl.java36 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
60 public XSTypeDefinition fType = null;
224 public XSTypeDefinition getTypeDefinition() {
H A DXSLoaderImpl.java35 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
257 XSTypeDefinition decl = (XSTypeDefinition) map.item(i);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DTypeInfoImpl.java65 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
91 public TypeInfoImpl(XSTypeDefinition t) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDeferredElementNSImpl.java32 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
117 type = (XSTypeDefinition)ownerDocument.getTypeInfo(fNodeIndex);
H A DPSVIAttrNSImpl.java64 protected XSTypeDefinition fTypeDecl = null;
173 public XSTypeDefinition getTypeDefinition() {
H A DPSVIElementNSImpl.java65 protected XSTypeDefinition fTypeDecl = null;
203 public XSTypeDefinition getTypeDefinition() {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DXSSimpleTypeDelegate.java35 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
140 public boolean derivedFromType(XSTypeDefinition ancestorType, short derivationMethod) {
148 public XSTypeDefinition getBaseType() {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DSelector.java30 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
236 public void endElement(QName element, XSTypeDefinition type, boolean nillable, Object actualValue, short valueType, ShortList itemValueType) {
H A DField.java30 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
231 protected void handleContent(XSTypeDefinition type, boolean nillable, Object actualValue, short valueType, ShortList itemValueType) {
233 type.getTypeCategory() == XSTypeDefinition.COMPLEX_TYPE &&
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DShortHandPointer.java30 import com.sun.org.apache.xerces.internal.xs.XSTypeDefinition;
222 XSTypeDefinition typeDef = attrPSVI.getMemberTypeDefinition();

Completed in 83 milliseconds

12