Searched refs:enumeration (Results 1 - 25 of 59) sorted by relevance

123

/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DXMLSimpleType.java87 /** enumeration */
88 public String[] enumeration; field in class:XMLSimpleType
112 * @param enumeration
119 public void setValues(short type, String name, String[] enumeration, argument
126 if (enumeration != null && enumeration.length > 0) {
127 this.enumeration = new String[enumeration.length];
128 System.arraycopy(enumeration, 0, this.enumeration,
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLSimpleType.java120 /** enumeration */
121 public String[] enumeration; field in class:XMLSimpleType
147 * @param enumeration
154 public void setValues(short type, String name, String[] enumeration, argument
162 if (enumeration != null && enumeration.length > 0) {
163 this.enumeration = new String[enumeration.length];
164 System.arraycopy(enumeration, 0, this.enumeration,
[all...]
H A DXMLDTDProcessor.java303 /** NOTATION enumeration values. */
854 * @param enumeration If the type has the value "ENUMERATION" or
870 String type, String[] enumeration,
948 for (int i=0; i<enumeration.length; i++) {
949 fNotationEnumVals.put(enumeration[i], attributeName);
978 for (int i = 0; i < enumeration.length; ++i) {
979 for (int j = i + 1; j < enumeration.length; ++j) {
980 if (enumeration[i].equals(enumeration[j])) {
988 new Object[]{ elementName, enumeration[
869 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/util/
H A DResourceBundleEnumeration.java41 Enumeration<String> enumeration; // may remain null field in class:ResourceBundleEnumeration
44 * Constructs a resource bundle enumeration.
45 * @param set an set providing some elements of the enumeration
46 * @param enumeration an enumeration providing more elements of the enumeration.
47 * enumeration may be null.
49 public ResourceBundleEnumeration(Set<String> set, Enumeration<String> enumeration) { argument
52 this.enumeration = enumeration;
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/servicecontext/
H A DServiceContextRegistry.java80 Enumeration enumeration = scCollection.elements() ;
81 while (enumeration.hasMoreElements()) {
83 (ServiceContextData)(enumeration.nextElement()) ;
/openjdk7/jaxp/src/javax/xml/validation/
H A DSecuritySupport.java123 Enumeration enumeration;
125 enumeration = ClassLoader.getSystemResources(name);
127 enumeration = cl.getResources(name);
129 return enumeration;
/openjdk7/jaxp/src/javax/xml/xpath/
H A DSecuritySupport.java120 Enumeration enumeration;
122 enumeration = ClassLoader.getSystemResources(name);
124 enumeration = cl.getResources(name);
126 return enumeration;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DSimpleRestrictionModel.java42 public NoFixedFacet enumeration(); method in interface:SimpleRestrictionModel
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DDefaultTableColumnModel.java271 Enumeration enumeration = getColumns();
275 while (enumeration.hasMoreElements()) {
276 aColumn = (TableColumn)enumeration.nextElement();
728 Enumeration enumeration = getColumns();
730 while (enumeration.hasMoreElements()) {
731 totalColumnWidth += ((TableColumn)enumeration.nextElement()).getWidth();
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTableHeaderUI.java234 final Enumeration<TableColumn> enumeration = header.getColumnModel().getColumns();
235 while (enumeration.hasMoreElements()) {
236 final TableColumn aColumn = enumeration.nextElement();
249 final Enumeration<TableColumn> enumeration = header.getColumnModel().getColumns();
250 while (enumeration.hasMoreElements()) {
251 final TableColumn aColumn = enumeration.nextElement();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/
H A DXSFacets.java78 public Vector enumeration; field in class:XSFacets
81 * An array parallel to "Vector enumeration". It contains namespace context
82 * of each enumeration value. Elements of this vector are NamespaceContext
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DDataCollectorBase.java380 private static Iterator makeIterator( final Enumeration enumeration )
383 public boolean hasNext() { return enumeration.hasMoreElements() ; }
384 public Object next() { return enumeration.nextElement() ; }
393 Enumeration enumeration = (Enumeration)
402 return makeIterator( enumeration ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DRepositoryImpl.java116 Enumeration enumeration = db.serverTable.elements();
117 while (enumeration.hasMoreElements()) {
118 server = (DBServerDef) enumeration.nextElement();
278 Enumeration enumeration = db.serverTable.elements();
280 while (enumeration.hasMoreElements()) {
281 DBServerDef server = (DBServerDef) enumeration.nextElement();
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/
H A DRemoteClass.java312 for (Enumeration<ClassDefinition> enumeration
314 enumeration.hasMoreElements();)
316 ClassDefinition interfaceDef = enumeration.nextElement();
339 for (Enumeration<Method> enumeration = methods.elements();
340 enumeration.hasMoreElements();)
342 Method m = enumeration.nextElement();
H A DBatchEnvironment.java180 Enumeration<File> enumeration = generatedFiles.elements();
181 while (enumeration.hasMoreElements()) {
182 File file = enumeration.nextElement();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DDTDEventListener.java311 String[] enumeration, short attributeUse, String defaultValue) throws SAXException;
310 attributeDecl(String elementName, String attributeName, String attributeType, String[] enumeration, short attributeUse, String defaultValue) argument
H A DDTDHandlerBase.java103 String[] enumeration, short attributeUse, String defaultValue) throws SAXException {
102 attributeDecl(String elementName, String attributeName, String attributeType, String[] enumeration, short attributeUse, String defaultValue) argument
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DInterfaceEntry.java249 for ( Enumeration enumeration = derivedFrom._allMethods.elements ();
250 enumeration.hasMoreElements (); )
252 MethodEntry method = (MethodEntry)enumeration.nextElement ();
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DValueGen24.java202 Enumeration enumeration = v.supports().elements();
203 while (enumeration.hasMoreElements()) {
204 InterfaceEntry ie = (InterfaceEntry)(enumeration.nextElement()) ;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DJAXPNamespaceContextWrapper.java111 return Collections.enumeration(new TreeSet(fAllPrefixes));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLDTDHandler.java223 * @param enumeration If the type has the value "ENUMERATION" or
239 String type, String[] enumeration,
238 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augmentations) argument
/openjdk7/jdk/src/share/classes/java/security/
H A DUnresolvedPermissionCollection.java114 * Returns an enumeration of all the UnresolvedPermission lists in the
117 * @return an enumeration of all the UnresolvedPermission objects.
133 return Collections.enumeration(results);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableHeaderUI.java775 Enumeration enumeration = header.getColumnModel().getColumns();
776 while (enumeration.hasMoreElements()) {
777 TableColumn aColumn = (TableColumn)enumeration.nextElement();
791 Enumeration enumeration = header.getColumnModel().getColumns();
792 while (enumeration.hasMoreElements()) {
793 TableColumn aColumn = (TableColumn)enumeration.nextElement();
805 Enumeration enumeration = header.getColumnModel().getColumns();
806 while (enumeration.hasMoreElements()) {
807 TableColumn aColumn = (TableColumn)enumeration.nextElement();
/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.java210 * @param enumeration If the type has the value "ENUMERATION", this
222 String type, String[] enumeration,
221 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augmentations) argument

Completed in 174 milliseconds

123