Searched refs:XSComplexTypeDecl (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSDeclarationPool.java68 private XSComplexTypeDecl fCTDecl[][] = new XSComplexTypeDecl[INITIAL_CHUNK_COUNT][];
125 public final XSComplexTypeDecl getComplexTypeDecl(){
131 fCTDecl[chunk][index] = new XSComplexTypeDecl();
295 fCTDecl[chunk] = new XSComplexTypeDecl[CHUNK_SIZE];
299 private static XSComplexTypeDecl[][] resize(XSComplexTypeDecl array[][], int newsize) {
300 XSComplexTypeDecl newarray[][] = new XSComplexTypeDecl[newsize][];
H A DSchemaGrammar.java224 fComplexTypeDecls = new XSComplexTypeDecl[grammar.fComplexTypeDecls.length];
447 public void addGlobalComplexTypeDecl(XSComplexTypeDecl decl) {
450 public void addGlobalComplexTypeDecl(XSComplexTypeDecl decl, String location) {
459 public void addComplexTypeDecl(XSComplexTypeDecl decl, SimpleLocator locator) {
549 XSComplexTypeDecl annotationType = new XSComplexTypeDecl();
550 XSComplexTypeDecl documentationType = new XSComplexTypeDecl();
551 XSComplexTypeDecl appinfoType = new XSComplexTypeDecl();
[all...]
H A DXSComplexTypeDecl.java39 * @version $Id: XSComplexTypeDecl.java,v 1.8 2010-11-01 04:39:55 joehw Exp $
41 public class XSComplexTypeDecl implements XSComplexTypeDefinition, TypeInfo { class in inherits:XSComplexTypeDefinition,TypeInfo
97 public XSComplexTypeDecl() { method in class:XSComplexTypeDecl
165 if (fContentType == XSComplexTypeDecl.CONTENTTYPE_SIMPLE ||
166 fContentType == XSComplexTypeDecl.CONTENTTYPE_EMPTY) {
317 && fBaseType instanceof XSComplexTypeDecl) {
318 return ((XSComplexTypeDecl) fBaseType).isDOMDerivedFrom(
434 if (((XSComplexTypeDecl) type).getDerivationMethod() != XSConstants.DERIVATION_RESTRICTION) {
509 if (((XSComplexTypeDecl) type).getDerivationMethod() == XSConstants.DERIVATION_EXTENSION) {
719 } // class XSComplexTypeDecl
[all...]
H A DXSConstraints.java141 return checkComplexDerivation((XSComplexTypeDecl)derived, base, block);
174 public static boolean checkComplexDerivationOk(XSComplexTypeDecl derived, XSTypeDefinition base, short block) {
178 return checkComplexDerivation((XSComplexTypeDecl)derived, base, block);
236 private static boolean checkComplexDerivation(XSComplexTypeDecl derived, XSTypeDefinition base, short block) {
261 return checkComplexDerivation((XSComplexTypeDecl)directBase, base, block);
300 XSComplexTypeDecl ctype = (XSComplexTypeDecl)type;
303 if (ctype.fContentType == XSComplexTypeDecl.CONTENTTYPE_SIMPLE) {
307 else if (ctype.fContentType == XSComplexTypeDecl.CONTENTTYPE_MIXED) {
413 XSComplexTypeDecl[] type
[all...]
H A DXSAttributeDecl.java65 XSComplexTypeDecl fEnclosingCT = null;
76 ValidatedInfo valInfo, XSComplexTypeDecl enclosingCT,
H A DSubstitutionGroupHandler.java125 devMethod |= ((XSComplexTypeDecl)type).fDerivedBy;
137 blockConstraint |= ((XSComplexTypeDecl)type).fBlock;
314 dMethod |= ((XSComplexTypeDecl)typed).fDerivedBy;
323 bMethod |= ((XSComplexTypeDecl)typed).fBlock;
H A DXSElementDecl.java66 XSComplexTypeDecl fEnclosingCT = null;
105 public void setIsLocal(XSComplexTypeDecl enclosingCT) {
H A DXMLSchemaValidator.java959 XSComplexTypeDecl ctype = (XSComplexTypeDecl) fCurrentType;
960 if (ctype.fContentType == XSComplexTypeDecl.CONTENTTYPE_ELEMENT) {
1593 XSComplexTypeDecl ctype = (XSComplexTypeDecl) fCurrentType;
1594 if (ctype.fContentType == XSComplexTypeDecl.CONTENTTYPE_ELEMENT) {
1793 XSComplexTypeDecl ctype = (XSComplexTypeDecl) fCurrentType;
1965 XSComplexTypeDecl ctype = (XSComplexTypeDecl) fCurrentTyp
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDComplexTypeTraverser.java32 import com.sun.org.apache.xerces.internal.impl.xs.XSComplexTypeDecl;
109 private short fContentType = XSComplexTypeDecl.CONTENTTYPE_EMPTY;
115 private XSComplexTypeDecl fComplexTypeDecl = null;
153 * @return XSComplexTypeDecl
155 XSComplexTypeDecl traverseLocal(Element complexTypeNode,
164 XSComplexTypeDecl type = traverseComplexTypeDecl (complexTypeNode,
183 XSComplexTypeDecl traverseGlobal (Element complexTypeNode,
191 XSComplexTypeDecl type = traverseComplexTypeDecl (complexTypeNode,
215 if (type2 instanceof XSComplexTypeDecl) {
216 type = (XSComplexTypeDecl) type
[all...]
H A DXSDAttributeTraverser.java31 import com.sun.org.apache.xerces.internal.impl.xs.XSComplexTypeDecl;
74 XSComplexTypeDecl enclosingCT) {
240 XSComplexTypeDecl enclosingCT) {
262 XSComplexTypeDecl enclCT = null;
H A DXSDElementTraverser.java30 import com.sun.org.apache.xerces.internal.impl.xs.XSComplexTypeDecl;
294 if (parent instanceof XSComplexTypeDecl)
295 element.setIsLocal((XSComplexTypeDecl)parent);
521 ((XSComplexTypeDecl)elementType).containsTypeID())) {
H A DXSDAbstractTraverser.java35 import com.sun.org.apache.xerces.internal.impl.xs.XSComplexTypeDecl;
604 XSComplexTypeDecl enclosingCT) {
H A DXSDHandler.java50 import com.sun.org.apache.xerces.internal.impl.xs.XSComplexTypeDecl;
3039 if (type instanceof XSComplexTypeDecl) {
3040 expandRelatedComplexTypeComponents((XSComplexTypeDecl) type, componentList, namespace, dependencies);
3057 private void expandRelatedComplexTypeComponents(XSComplexTypeDecl type, Vector componentList, String namespace, Map<String, Vector> dependencies) {
3608 if (fParent[i] instanceof XSComplexTypeDecl) {
3609 XSParticle p = ((XSComplexTypeDecl)fParent[i]).getParticle();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DElementNSImpl.java26 import com.sun.org.apache.xerces.internal.impl.xs.XSComplexTypeDecl;
433 } else if (type instanceof XSComplexTypeDecl) {
434 return ((XSComplexTypeDecl) type).getTypeName();
474 } else if (type instanceof XSComplexTypeDecl) {
475 return ((XSComplexTypeDecl) type).isDOMDerivedFrom(
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DCMBuilder.java25 import com.sun.org.apache.xerces.internal.impl.xs.XSComplexTypeDecl;
71 public XSCMValidator getContentModel(XSComplexTypeDecl typeDecl) {
76 if (contentType == XSComplexTypeDecl.CONTENTTYPE_SIMPLE ||
77 contentType == XSComplexTypeDecl.CONTENTTYPE_EMPTY) {

Completed in 94 milliseconds