Searched refs:defaultType (Results 1 - 25 of 29) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DXMLSimpleType.java93 /** defaultType */
94 public short defaultType; field in class:XMLSimpleType
114 * @param defaultType
120 boolean list, short defaultType,
134 this.defaultType = defaultType;
154 defaultType = simpleType.defaultType;
168 this.defaultType = -1;
119 setValues(short type, String name, String[] enumeration, boolean list, short defaultType, String defaultValue, String nonNormalizedDefaultValue) argument
H A DDTDGrammar.java281 * @param defaultType The attribute default type. This value will be
295 String defaultType, XMLString defaultValue,
334 if ( defaultType != null ) {
335 if ( defaultType.equals( "#FIXED") ) {
336 fSimpleType.defaultType = fSimpleType.DEFAULT_TYPE_FIXED;
337 } else if ( defaultType.equals( "#IMPLIED") ) {
338 fSimpleType.defaultType = fSimpleType.DEFAULT_TYPE_IMPLIED;
339 } else if ( defaultType.equals( "#REQUIRED") ) {
340 fSimpleType.defaultType = fSimpleType.DEFAULT_TYPE_REQUIRED;
494 elementDecl.simpleType.defaultType
293 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLSimpleType.java126 /** defaultType */
127 public short defaultType; field in class:XMLSimpleType
149 * @param defaultType
155 boolean list, short defaultType,
170 this.defaultType = defaultType;
191 defaultType = simpleType.defaultType;
206 this.defaultType = -1;
154 setValues(short type, String name, String[] enumeration, boolean list, short defaultType, String defaultValue, String nonNormalizedDefaultValue, DatatypeValidator datatypeValidator) argument
H A DXMLDTDProcessor.java857 * @param defaultType The attribute default type. This value will be
871 String defaultType, XMLString defaultValue,
905 if (defaultType == null ||
906 !(defaultType == XMLSymbols.fIMPLIEDSymbol ||
907 defaultType == XMLSymbols.fREQUIREDSymbol)) {
999 (defaultType == null ||
1000 (defaultType != null && defaultType == XMLSymbols.fFIXEDSymbol))) {
1074 defaultType, defaultValue, nonNormalizedDefaultValue, augs);
1078 defaultType, defaultValu
869 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) argument
[all...]
H A DDTDGrammar.java592 * @param defaultType The attribute default type. This value will be
606 String defaultType, XMLString defaultValue,
641 if ( defaultType != null ) {
642 if ( defaultType.equals( "#FIXED") ) {
643 fSimpleType.defaultType = XMLSimpleType.DEFAULT_TYPE_FIXED;
644 } else if ( defaultType.equals( "#IMPLIED") ) {
645 fSimpleType.defaultType = XMLSimpleType.DEFAULT_TYPE_IMPLIED;
646 } else if ( defaultType.equals( "#REQUIRED") ) {
647 fSimpleType.defaultType = XMLSimpleType.DEFAULT_TYPE_REQUIRED;
1286 elementDecl.simpleType.defaultType
604 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) argument
[all...]
H A DXMLDTDValidator.java1136 + "attDefaultType : "+fTempAttDecl.simpleType.defaultType + "\n"
1146 int attDefaultType =fTempAttDecl.simpleType.defaultType;
1289 if (fTempAttDecl.simpleType.defaultType ==
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/core/
H A DAdapter.java53 public final TypeT defaultType; field in class:Adapter
79 defaultType = nav.getTypeArgument(baseClass,0);
81 defaultType = nav.ref(Object.class);
H A DRef.java66 type=adapter.defaultType;
81 type = adapter.defaultType;
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DTerminalFactory.java96 private final static String defaultType; field in class:TerminalFactory
129 defaultType = type;
199 return defaultType;
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DMimetypesFileTypeMap.java80 private static String defaultType = "application/octet-stream"; field in class:MimetypesFileTypeMap
310 return defaultType;
314 return defaultType;
323 return defaultType;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLDTDScannerImpl.java1203 String defaultType = scanAttDefaultDecl(elName, name,
1220 if (defaultType!=null && (defaultType.equals("#REQUIRED") ||
1221 defaultType.equals("#IMPLIED"))) {
1224 defaultType, null, null, null);
1228 defaultType, null, null, null);
1235 defaultType, fLiteral, fLiteral2, null);
1239 defaultType, fLiteral, fLiteral2, null);
1392 String defaultType = null;
1396 defaultType
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLDTDHandler.java226 * @param defaultType The attribute default type. This value will be
240 String defaultType, XMLString defaultValue,
238 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augmentations) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DReferencePropertyInfoImpl.java147 final T defaultType = nav.ref(XmlElementRef.DEFAULT.class);
153 if( type.equals(defaultType) ) type = nav.erasure(getIndividualType());
218 final T defaultType = nav.ref(XmlElementRef.DEFAULT.class);
224 if (type.equals(defaultType)) {
H A DRuntimeElementInfoImpl.java78 (Class)getAdapter().defaultType,(Class)adapterType);
H A DElementInfoImpl.java289 contentType = builder.getTypeInfo(this.adapter.defaultType,this);
H A DPropertyInfoImpl.java171 return adapter.defaultType;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DUnparsedEntityHandler.java137 String type, String[] enumeration, String defaultType,
142 type, enumeration, defaultType,
136 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augmentations) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDTDParser.java213 * @param defaultType The attribute default type. This value will be
223 String defaultType, XMLString defaultValue,
221 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augmentations) argument
H A DAbstractXMLDocumentParser.java495 * @param defaultType The attribute default type. This value will be
509 String defaultType, XMLString defaultValue,
507 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) argument
H A DAbstractDOMParser.java2355 * @param defaultType The attribute default type. This value will be
2369 String defaultType, XMLString defaultValue,
2392 if (defaultType != null) {
2394 fInternalSubset.append (defaultType);
2367 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) argument
H A DAbstractSAXParser.java907 * @param defaultType The attribute default type. This value will be
922 String defaultType, XMLString defaultValue,
957 type, defaultType, value);
920 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) argument
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DExpression.java97 protected static String defaultType (String targetType) method in class:Expression
100 } // defaultType
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/
H A DDTDGrammarUtil.java223 + "attDefaultType : " + fTempAttDecl.simpleType.defaultType + "\n"
233 int attDefaultType = fTempAttDecl.simpleType.defaultType;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultXMLDocumentHandler.java528 * @param defaultType The attribute default type. This value will be
542 String defaultType, XMLString defaultValue,
540 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augmentations) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DAccessor.java196 (Class<T>) Navigator.REFLECTION.erasure(adapter.defaultType),

Completed in 404 milliseconds

12