Searched refs:XSType (Results 1 - 25 of 38) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DXSType.java34 public interface XSType extends XSDeclaration { interface in inherits:XSDeclaration
43 XSType getBaseType();
62 XSType[] listSubstitutables();
65 * If this {@link XSType} is redefined by another type,
71 XSType getRedefinedBy();
95 boolean isDerivedFrom( XSType t );
H A DXSComplexType.java37 public interface XSComplexType extends XSType, XSAttContainer
H A DXSElementDecl.java44 XSType getType();
69 * Possible values are {@link XSType#EXTENSION} or
70 * <code>XSType.RESTRICTION</code>.
81 * Possible values are {@link XSType#EXTENSION},
82 * <code>XSType.RESTRICTION</code>, or <code>XSType.SUBSTITUTION</code>
H A DXSSchema.java81 * Gets all the {@link XSType}s in this schema (union of
84 Map<String,XSType> getTypes();
85 Iterator<XSType> iterateTypes();
86 XSType getType(String localName);
H A DXSSchemaSet.java50 XSType getType(String namespaceURI, String localName);
62 Iterator<XSType> iterateTypes();
H A DXSSimpleType.java39 public interface XSSimpleType extends XSType, XSContentType
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DUtil.java29 import com.sun.xml.internal.xsom.XSType;
43 private static XSType[] listDirectSubstitutables( XSType _this ) {
49 XSType t = (XSType)itr.next();
53 return (XSType[]) r.toArray(new XSType[r.size()]);
56 public static XSType[] listSubstitutables( XSType _this ) {
59 return (XSType[]) substitable
[all...]
H A DSimpleTypeImpl.java34 import com.sun.xml.internal.xsom.XSType;
67 public XSType[] listSubstitutables() {
95 public XSType getBaseType() { return baseType.getType(); }
114 public final int getDerivationMethod() { return XSType.RESTRICTION; }
120 public boolean isDerivedFrom(XSType t) {
121 XSType x = this;
125 XSType s = x.getBaseType();
H A DElementDecl.java33 import com.sun.xml.internal.xsom.XSType;
95 public XSType getType() { return type.getType(); }
159 XSType type = this.getType();
166 if(parent.isSubstitutionDisallowed(XSType.SUBSTITUTION))
169 boolean rd = parent.isSubstitutionDisallowed(XSType.RESTRICTION);
170 boolean ed = parent.isSubstitutionDisallowed(XSType.EXTENSION);
174 XSType parentType = parent.getType();
176 if(type.getDerivationMethod()==XSType.RESTRICTION) rused = true;
184 rd |= type.asComplexType().isSubstitutionProhibited(XSType.RESTRICTION);
185 ed |= type.asComplexType().isSubstitutionProhibited(XSType
[all...]
H A DRef.java36 import com.sun.xml.internal.xsom.XSType;
63 XSType getType();
H A DComplexTypeImpl.java37 import com.sun.xml.internal.xsom.XSType;
77 public boolean isDerivedFrom(XSType t) {
78 XSType x = this;
82 XSType s = x.getBaseType();
97 public XSType getBaseType() { return baseType.getType(); }
164 XSType baseType = getBaseType();
216 XSType base = getBaseType();
260 public XSType[] listSubstitutables() {
279 XSType base = cType.getBaseType();
H A DSchemaSetImpl.java47 import com.sun.xml.internal.xsom.XSType;
108 public XSType getType(String ns, String localName) {
172 public Iterator<XSType> iterateTypes() {
173 return new Iterators.Map<XSType,XSSchema>(iterateSchema()) {
174 protected Iterator<XSType> apply(XSSchema u) {
265 public boolean isDerivedFrom(XSType t) {
273 public XSType getBaseType() { return anyType; }
305 public XSType[] listSubstitutables() {
334 public XSType getBaseType() { return this; }
338 public boolean isDerivedFrom(XSType
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DTypeClosure.java28 import com.sun.xml.internal.xsom.XSType;
35 * of the specified XSType or any of the base types of the XSType.
52 public boolean contains(XSType type) {
56 XSType baseType = type.getBaseType();
H A DTypeSet.java28 import com.sun.xml.internal.xsom.XSType;
46 public abstract boolean contains(XSType type);
58 public boolean contains(XSType type) {
74 public boolean contains(XSType type) {
H A DSimpleTypeSet.java30 import com.sun.xml.internal.xsom.XSType;
36 * instance of the specified XSType.
51 public boolean contains(XSType type) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DSubstGroupBaseTypeRef.java28 import com.sun.xml.internal.xsom.XSType;
44 public XSType getType() {
H A DBaseContentRef.java30 import com.sun.xml.internal.xsom.XSType;
43 XSType t = baseType.getType();
55 XSType t = baseType.getType();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DersSet.java175 XSType.EXTENSION|XSType.RESTRICTION|XSType.SUBSTITUTION);
179 if(v.indexOf("extension")!=-1) r|=XSType.EXTENSION;
180 if(v.indexOf("restriction")!=-1) r|=XSType.RESTRICTION;
181 if(v.indexOf("substitution")!=-1) r|=XSType.SUBSTITUTION;
H A DerSet.java174 return new Integer(XSType.EXTENSION|XSType.RESTRICTION);
178 if(v.indexOf("extension")!=-1) r|=XSType.EXTENSION;
179 if(v.indexOf("restriction")!=-1) r|=XSType.RESTRICTION;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/ct/
H A DExtendedComplexTypeBuilder.java32 import com.sun.xml.internal.xsom.XSType;
44 XSType baseType = ct.getBaseType();
47 && ct.getDerivationMethod()==XSType.EXTENSION;
H A DSTDerivedComplexTypeBuilder.java34 import com.sun.xml.internal.xsom.XSType;
51 assert ct.getDerivationMethod()==XSType.EXTENSION;
H A DMixedExtendedComplexTypeBuilder.java36 import com.sun.xml.internal.xsom.XSType;
47 XSType bt = ct.getBaseType();
51 ct.getDerivationMethod()==XSType.EXTENSION &&
H A DRestrictedComplexTypeBuilder.java36 import com.sun.xml.internal.xsom.XSType;
48 XSType baseType = ct.getBaseType();
51 && ct.getDerivationMethod()==XSType.RESTRICTION;
H A DMixedComplexTypeBuilder.java37 import com.sun.xml.internal.xsom.XSType;
46 XSType bt = ct.getBaseType();
54 ct.getDerivationMethod() == XSType.EXTENSION) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DStep.java31 import com.sun.xml.internal.xsom.XSType;
148 static final class AnonymousType extends Filtered<XSType> {
149 public AnonymousType(Axis<? extends XSType> axis) {
153 protected boolean match(XSType node) {

Completed in 97 milliseconds

12