Searched refs:finalSet (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/
H A DSchemaDVFactory.java110 * @param finalSet value of "final"
116 short finalSet, XSSimpleType base,
125 * @param finalSet value of "final"
131 short finalSet, XSSimpleType itemType,
140 * @param finalSet value of "final"
146 short finalSet, XSSimpleType[] memberTypes,
115 createTypeRestriction(String name, String targetNamespace, short finalSet, XSSimpleType base, XSObjectList annotations) argument
130 createTypeList(String name, String targetNamespace, short finalSet, XSSimpleType itemType, XSObjectList annotations) argument
145 createTypeUnion(String name, String targetNamespace, short finalSet, XSSimpleType[] memberTypes, XSObjectList annotations) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DSimpleTypeImpl.java56 Set<XSVariety> finalSet,
62 this.finalSet = finalSet;
107 private final Set<XSVariety> finalSet; field in class:SimpleTypeImpl
110 return finalSet.contains(v);
49 SimpleTypeImpl( SchemaDocumentImpl _parent, AnnotationImpl _annon, Locator _loc, ForeignAttributesImpl _fa, String _name, boolean _anonymous, Set<XSVariety> finalSet, Ref.SimpleType _baseType) argument
H A DListSimpleTypeImpl.java45 String _name, boolean _anonymous, Set<XSVariety> finalSet,
48 super(_parent,_annon,_loc,_fa,_name,_anonymous, finalSet,
43 ListSimpleTypeImpl( SchemaDocumentImpl _parent, AnnotationImpl _annon, Locator _loc, ForeignAttributesImpl _fa, String _name, boolean _anonymous, Set<XSVariety> finalSet, Ref.SimpleType _itemType ) argument
H A DUnionSimpleTypeImpl.java46 String _name, boolean _anonymous, Set<XSVariety> finalSet,
49 super(_parent,_annon,_loc,_fa,_name,_anonymous, finalSet,
44 UnionSimpleTypeImpl( SchemaDocumentImpl _parent, AnnotationImpl _annon, Locator _loc, ForeignAttributesImpl _fa, String _name, boolean _anonymous, Set<XSVariety> finalSet, Ref.SimpleType[] _members ) argument
H A DRestrictionSimpleTypeImpl.java47 String _name, boolean _anonymous, Set<XSVariety> finalSet,
50 super( _parent, _annon, _loc, _fa, _name, _anonymous, finalSet, _baseType );
45 RestrictionSimpleTypeImpl( SchemaDocumentImpl _parent, AnnotationImpl _annon, Locator _loc, ForeignAttributesImpl _fa, String _name, boolean _anonymous, Set<XSVariety> finalSet, Ref.SimpleType _baseType ) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DBaseDVFactory.java81 * @param finalSet value of "final"
87 short finalSet, XSSimpleType base, XSObjectList annotations) {
88 return new XSSimpleTypeDecl((XSSimpleTypeDecl)base, name, targetNamespace, finalSet, false, annotations);
97 * @param finalSet value of "final"
103 short finalSet, XSSimpleType itemType,
105 return new XSSimpleTypeDecl(name, targetNamespace, finalSet, (XSSimpleTypeDecl)itemType, false, annotations);
114 * @param finalSet value of "final"
120 short finalSet, XSSimpleType[] memberTypes,
126 return new XSSimpleTypeDecl(name, targetNamespace, finalSet, mtypes, annotations);
86 createTypeRestriction(String name, String targetNamespace, short finalSet, XSSimpleType base, XSObjectList annotations) argument
102 createTypeList(String name, String targetNamespace, short finalSet, XSSimpleType itemType, XSObjectList annotations) argument
119 createTypeUnion(String name, String targetNamespace, short finalSet, XSSimpleType[] memberTypes, XSObjectList annotations) argument
H A DBaseSchemaDVFactory.java260 * @param finalSet value of "final"
266 short finalSet, XSSimpleType base, XSObjectList annotations) {
270 return st.setRestrictionValues((XSSimpleTypeDecl)base, name, targetNamespace, finalSet, annotations);
272 return new XSSimpleTypeDecl((XSSimpleTypeDecl)base, name, targetNamespace, finalSet, false, annotations);
281 * @param finalSet value of "final"
287 short finalSet, XSSimpleType itemType,
291 return st.setListValues(name, targetNamespace, finalSet, (XSSimpleTypeDecl)itemType, annotations);
293 return new XSSimpleTypeDecl(name, targetNamespace, finalSet, (XSSimpleTypeDecl)itemType, false, annotations);
302 * @param finalSet value of "final"
308 short finalSet, XSSimpleTyp
265 createTypeRestriction(String name, String targetNamespace, short finalSet, XSSimpleType base, XSObjectList annotations) argument
286 createTypeList(String name, String targetNamespace, short finalSet, XSSimpleType itemType, XSObjectList annotations) argument
307 createTypeUnion(String name, String targetNamespace, short finalSet, XSSimpleType[] memberTypes, XSObjectList annotations) argument
[all...]
H A DXSSimpleTypeDecl.java354 protected XSSimpleTypeDecl(XSSimpleTypeDecl base, String name, String uri, short finalSet, boolean isImmutable, argument
356 this(base, name, uri, finalSet, isImmutable, annotations);
362 protected XSSimpleTypeDecl(XSSimpleTypeDecl base, String name, String uri, short finalSet, boolean isImmutable, argument
367 fFinalSet = finalSet;
427 protected XSSimpleTypeDecl(String name, String uri, short finalSet, XSSimpleTypeDecl itemType, boolean isImmutable, argument
432 fFinalSet = finalSet;
451 protected XSSimpleTypeDecl(String name, String uri, short finalSet, XSSimpleTypeDecl[] memberTypes, argument
456 fFinalSet = finalSet;
480 protected XSSimpleTypeDecl setRestrictionValues(XSSimpleTypeDecl base, String name, String uri, short finalSet, argument
488 fFinalSet = finalSet;
535 setListValues(String name, String uri, short finalSet, XSSimpleTypeDecl itemType, XSObjectList annotations) argument
563 setUnionValues(String name, String uri, short finalSet, XSSimpleTypeDecl[] memberTypes, XSObjectList annotations) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DsimpleType.java71 finalSet = makeFinalSet(finalValue);
87 NGCCHandler h = new SimpleType_Restriction(this, super._source, $runtime, 182, annotation,locator,fa,name,finalSet);
92 NGCCHandler h = new SimpleType_List(this, super._source, $runtime, 183, annotation,locator,fa,name,finalSet);
97 NGCCHandler h = new SimpleType_Union(this, super._source, $runtime, 177, annotation,locator,fa,name,finalSet);
476 private Set finalSet; field in class:simpleType
H A DSimpleType_List.java50 private Set finalSet; field in class:SimpleType_List
69 this.finalSet = _finalSet;
81 name, name==null, finalSet, itemType );
H A DSimpleType_Union.java52 private Set finalSet; field in class:SimpleType_Union
72 this.finalSet = _finalSet;
83 $runtime.document, annotation, locator, fa, name, name==null, finalSet,
H A DSimpleType_Restriction.java50 private Set finalSet; field in class:SimpleType_Restriction
70 this.finalSet = _finalSet;
87 $runtime.document, annotation, locator, fa, name, name==null, finalSet, baseType );

Completed in 46 milliseconds