Searched defs:fAnnotations (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSAttributeUseImpl.java52 public XSObjectList fAnnotations = null; field in class:XSAttributeUseImpl
59 fAnnotations = null;
150 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
H A DXSGroupDecl.java50 public XSObjectList fAnnotations = null; field in class:XSGroupDecl
90 return (fAnnotations != null) ? (XSAnnotation) fAnnotations.item(0) : null;
97 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
H A DXSNotationDecl.java51 public XSObjectList fAnnotations = null; field in class:XSNotationDecl
100 return (fAnnotations != null) ? (XSAnnotation) fAnnotations.item(0) : null;
107 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
H A DXSModelGroupImpl.java57 public XSObjectList fAnnotations = null; field in class:XSModelGroupImpl
178 fAnnotations = null;
229 return (fAnnotations != null) ? (XSAnnotation) fAnnotations.item(0) : null;
236 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
H A DXSParticleDecl.java64 public XSObjectList fAnnotations = null; field in class:XSParticleDecl
74 particle.fAnnotations = fAnnotations;
179 fAnnotations = null;
245 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
H A DXSAttributeDecl.java67 XSObjectList fAnnotations = null; field in class:XSAttributeDecl
85 fAnnotations = annotations;
96 fAnnotations = null;
172 return (fAnnotations != null) ? (XSAnnotation) fAnnotations.item(0) : null;
179 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
H A DXSAttributeGroupDecl.java61 public XSObjectList fAnnotations; field in class:XSAttributeGroupDecl
331 fAnnotations = null;
381 return (fAnnotations != null) ? (XSAnnotation) fAnnotations.item(0) : null;
388 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
H A DXSWildcardDecl.java57 public XSObjectList fAnnotations = null; field in class:XSWildcardDecl
582 return (fAnnotations != null) ? (XSAnnotation) fAnnotations.item(0) : null;
589 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
H A DXSElementDecl.java72 public XSObjectList fAnnotations = null; field in class:XSElementDecl
187 fAnnotations = null;
348 return (fAnnotations != null) ? (XSAnnotation) fAnnotations.item(0) : null;
355 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
H A DXSModelImpl.java104 private XSObjectList fAnnotations = null; field in class:XSModelImpl
627 if (fAnnotations != null) {
628 return fAnnotations;
637 fAnnotations = XSObjectListImpl.EMPTY_LIST;
638 return fAnnotations;
645 System.arraycopy(currGrammar.fAnnotations, 0, annotations, currPos, currGrammar.fNumAnnotations);
649 fAnnotations = new XSObjectListImpl(annotations, annotations.length);
650 return fAnnotations;
H A DXSComplexTypeDecl.java84 XSObjectListImpl fAnnotations = null; field in class:XSComplexTypeDecl
118 fAnnotations = annotations;
539 if(fAnnotations != null) {
541 fAnnotations.clearXSObjectList();
543 fAnnotations = null;
690 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
H A DSchemaGrammar.java114 XSAnnotationImpl [] fAnnotations = null; field in class:SchemaGrammar
210 fAnnotations = new XSAnnotationImpl[grammar.fAnnotations.length];
211 System.arraycopy(grammar.fAnnotations, 0, fAnnotations, 0, fNumAnnotations);
1662 return new XSObjectListImpl(fAnnotations, fNumAnnotations);
1669 if (fAnnotations == null) {
1670 fAnnotations = new XSAnnotationImpl[2];
1672 else if (fNumAnnotations == fAnnotations.length) {
1674 System.arraycopy(fAnnotations,
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DIdentityConstraint.java67 protected XSAnnotationImpl [] fAnnotations = null; field in class:IdentityConstraint
226 return new XSObjectListImpl(fAnnotations, fNumAnnotations);
240 if(fAnnotations == null) {
241 fAnnotations = new XSAnnotationImpl[2];
242 } else if(fNumAnnotations == fAnnotations.length) {
244 System.arraycopy(fAnnotations, 0, newArray, 0, fNumAnnotations);
245 fAnnotations = newArray;
247 fAnnotations[fNumAnnotations++] = annotation;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDocumentInfo.java91 protected XSAnnotationInfo fAnnotations = null; field in class:XSDocumentInfo
237 info.next = fAnnotations;
238 fAnnotations = info;
244 return fAnnotations;
249 fAnnotations = null;
H A DXSDComplexTypeTraverser.java116 private XSAnnotationImpl [] fAnnotations = null; field in class:XSDComplexTypeTraverser
253 fAnnotations = null;
350 fAttrGrp, fXSSimpleType, fParticle, new XSObjectListImpl(fAnnotations,
351 fAnnotations == null? 0 : fAnnotations.length));
934 group.fAnnotations = XSObjectListImpl.EMPTY_LIST;
939 particle.fAnnotations = XSObjectListImpl.EMPTY_LIST;
1222 fGlobalStore[fGlobalStorePos++] = fAnnotations;
1226 fAnnotations = (XSAnnotationImpl [])fGlobalStore[--fGlobalStorePos];
1250 if(fAnnotations
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DXSSimpleTypeDecl.java305 private XSObjectList fAnnotations = null; field in class:XSSimpleTypeDecl
347 fAnnotations = null;
368 fAnnotations = annotations;
433 fAnnotations = annotations;
457 fAnnotations = annotations;
489 fAnnotations = annotations;
544 fAnnotations = annotations;
572 fAnnotations = annotations;
2365 return (fAnnotations != null) ? fAnnotations
[all...]

Completed in 2142 milliseconds