Searched refs:simpleType (Results 1 - 25 of 53) sorted by relevance

123

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLAttributeDecl.java38 /** simpleType */
39 public final XMLSimpleType simpleType = new XMLSimpleType(); field in class:XMLAttributeDecl
52 * @param simpleType
55 public void setValues(QName name, XMLSimpleType simpleType, boolean optional) { argument
57 this.simpleType.setValues(simpleType);
66 this.simpleType.clear();
H A DXMLSimpleType.java138 public void setValues(XMLSimpleType simpleType) { argument
140 type = simpleType.type;
141 name = simpleType.name;
143 if (simpleType.enumeration != null && simpleType.enumeration.length > 0) {
144 enumeration = new String[simpleType.enumeration.length];
145 System.arraycopy(simpleType.enumeration, 0, enumeration, 0, enumeration.length);
150 list = simpleType.list;
151 defaultType = simpleType.defaultType;
152 defaultValue = simpleType
[all...]
H A DXMLElementDecl.java66 /** simpleType */
67 public final XMLSimpleType simpleType = new XMLSimpleType(); field in class:XMLElementDecl
80 * @param simpleType
82 public void setValues(QName name, int scope, short type, ContentModelValidator contentModelValidator, XMLSimpleType simpleType) { argument
87 this.simpleType.setValues(simpleType);
98 this.simpleType.clear();
H A DXMLDTDValidator.java1136 + "attType : "+fTempAttDecl.simpleType.type + "\n"
1137 + "attDefaultType : "+fTempAttDecl.simpleType.defaultType + "\n"
1138 + "attDefaultValue : '"+fTempAttDecl.simpleType.defaultValue + "'\n"
1147 int attDefaultType =fTempAttDecl.simpleType.defaultType;
1150 if (fTempAttDecl.simpleType.defaultValue != null) {
1151 attValue = fTempAttDecl.simpleType.defaultValue;
1290 if (fTempAttDecl.simpleType.defaultType ==
1292 String defaultValue = fTempAttDecl.simpleType.defaultValue;
1305 if (fTempAttDecl.simpleType.type == XMLSimpleType.TYPE_ENTITY ||
1306 fTempAttDecl.simpleType
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DXMLElementDecl.java55 /** simpleType */
56 public final XMLSimpleType simpleType = new XMLSimpleType(); field in class:XMLElementDecl
65 * @param simpleType
67 public void setValues(QName name, int scope, short type, XMLSimpleType simpleType) { argument
71 this.simpleType.setValues(simpleType);
81 this.simpleType.clear();
H A DXMLAttributeDecl.java34 /** simpleType */
35 public final XMLSimpleType simpleType = new XMLSimpleType(); field in class:XMLAttributeDecl
45 * @param simpleType
48 public void setValues(QName name, XMLSimpleType simpleType, boolean optional) { argument
50 this.simpleType.setValues(simpleType);
59 this.simpleType.clear();
H A DXMLSimpleType.java130 public void setValues(XMLSimpleType simpleType) { argument
132 type = simpleType.type;
133 name = simpleType.name;
135 if (simpleType.enumeration != null && simpleType.enumeration.length > 0) {
136 enumeration = new String[simpleType.enumeration.length];
137 System.arraycopy(simpleType.enumeration, 0, enumeration, 0, enumeration.length);
142 list = simpleType.list;
143 defaultType = simpleType.defaultType;
144 defaultValue = simpleType
[all...]
H A DDTDGrammar.java493 elementDecl.simpleType.list = false;
496 elementDecl.simpleType.list = (fElementDeclType[chunk][index] & LIST_FLAG) != 0;
499 elementDecl.simpleType.defaultType = -1;
500 elementDecl.simpleType.defaultValue = null;
563 attributeDecl.simpleType.setValues(attributeType,fAttributeDeclName[chunk][index].localpart,
584 && fAttributeDecl.simpleType.type != XMLSimpleType.TYPE_CDATA){
646 if (elementDecl.simpleType.list == true ) {
690 fAttributeDeclType[attrChunk][attrIndex] = attributeDecl.simpleType.type;
692 if (attributeDecl.simpleType.list) {
695 fAttributeDeclEnumeration[attrChunk][attrIndex] = attributeDecl.simpleType
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/visitor/
H A DXSContentTypeFunction.java39 T simpleType( XSSimpleType simpleType ); method in interface:XSContentTypeFunction
H A DXSContentTypeVisitor.java39 void simpleType( XSSimpleType simpleType ); method in interface:XSContentTypeVisitor
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DSimpleTypeHost.java42 public SimpleType simpleType(); method in interface:SimpleTypeHost
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/util/
H A DComponentNameFunction.java126 * @see com.sun.xml.internal.xsom.visitor.XSContentTypeFunction#simpleType(XSSimpleType)
128 public String simpleType(XSSimpleType simpleType) { argument
129 String name = simpleType.getName();
131 return name + " " + nameGetter.simpleType( simpleType );
H A DXSFunctionFilter.java101 public T simpleType(XSSimpleType simpleType) { argument
102 return core.simpleType(simpleType);
H A DXSFinder.java126 * @see com.sun.xml.internal.xsom.visitor.XSContentTypeFunction#simpleType(com.sun.xml.internal.xsom.XSSimpleType)
128 public Boolean simpleType(XSSimpleType simpleType) { argument
H A DNameGetter.java114 public String simpleType(XSSimpleType simpleType) { argument
115 return localize("simpleType");
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/xml/internal/stream/dtd/
H A DDTDGrammarUtil.java218 + "attType : " + fTempAttDecl.simpleType.type + "\n"
219 + "attDefaultType : " + fTempAttDecl.simpleType.defaultType + "\n"
220 + "attDefaultValue : '" + fTempAttDecl.simpleType.defaultValue + "'\n"
229 int attDefaultType = fTempAttDecl.simpleType.defaultType;
232 if (fTempAttDecl.simpleType.defaultValue != null) {
233 attValue = fTempAttDecl.simpleType.defaultValue;
389 switch (attrDecl.simpleType.type) {
391 return attrDecl.simpleType.list ? XMLSymbols.fENTITIESSymbol :
397 for (int i = 0; i < attrDecl.simpleType.enumeration.length; i++) {
401 buffer.append(attrDecl.simpleType
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/impl/
H A DSimpleTypeImpl.java149 visitor.simpleType(this);
152 visitor.simpleType(this);
155 return function.simpleType(this);
158 return function.simpleType(this);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DBindBlue.java104 public void simpleType(XSSimpleType type) { method in class:BindBlue
H A DBindYellow.java57 public void simpleType(XSSimpleType xsSimpleType) { method in class:BindYellow
H A DRefererFinder.java129 public void simpleType(XSSimpleType simpleType) {} argument
H A DClassBinderFilter.java91 public CElement simpleType(XSSimpleType xsSimpleType) { method in class:ClassBinderFilter
92 return core.simpleType(xsSimpleType);
H A DUnusedCustomizationChecker.java225 public void simpleType(XSSimpleType simpleType) { argument
226 if(check(simpleType))
227 simpleType.visit( (XSSimpleTypeVisitor)this );
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSAttributeDecl.java75 XSSimpleType simpleType, short constraintType, short scope,
80 fType = simpleType;
74 setValues(String name, String targetNamespace, XSSimpleType simpleType, short constraintType, short scope, ValidatedInfo valInfo, XSComplexTypeDecl enclosingCT, XSObjectList annotations) argument
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/impl/scd/
H A DAbstractAxisImpl.java147 public Iterator<T> simpleType(XSSimpleType simpleType) { argument
H A DAxis.java205 public Iterator<XSComponent> simpleType(XSSimpleType type) {
381 public Iterator<XSType> simpleType(XSSimpleType type) {
395 public Iterator<XSSimpleType> simpleType(XSSimpleType type) {
405 public Iterator<XSSimpleType> simpleType(XSSimpleType type) {
417 public Iterator<XSSimpleType> simpleType(XSSimpleType type) {
524 public Iterator<XSFacet> simpleType(XSSimpleType type) {

Completed in 190 milliseconds

123