| 1 57 58 package com.sun.org.apache.xerces.internal.impl.xs.psvi; 59 60 64 public interface XSComplexTypeDefinition extends XSTypeDefinition { 65 71 public static final short CONTENTTYPE_EMPTY = 0; 72 76 public static final short CONTENTTYPE_SIMPLE = 1; 77 82 public static final short CONTENTTYPE_ELEMENT = 2; 83 86 public static final short CONTENTTYPE_MIXED = 3; 87 88 93 public short getDerivationMethod(); 94 95 100 public boolean getAbstract(); 101 102 105 public XSObjectList getAttributeUses(); 106 107 110 public XSWildcard getAttributeWildcard(); 111 112 118 public short getContentType(); 119 120 124 public XSSimpleTypeDefinition getSimpleType(); 125 126 130 public XSParticle getParticle(); 131 132 139 public boolean isProhibitedSubstitution(short restriction); 140 141 146 public short getProhibitedSubstitutions(); 147 148 151 public XSObjectList getAnnotations(); 152 153 } 154 | Popular Tags |