Searched refs:enumeration (Results 26 - 50 of 59) sorted by relevance

123

/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DDelegationPermission.java327 * Returns an enumeration of all the DelegationPermission objects
330 * @return an enumeration of all the DelegationPermission objects.
336 return Collections.enumeration(perms);
H A DServicePermission.java534 * Returns an enumeration of all the ServicePermission objects
537 * @return an enumeration of all the ServicePermission objects.
543 return Collections.enumeration(perms);
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServerPermission.java369 return Collections.enumeration(set);
/openjdk7/jdk/test/java/util/logging/
H A DCustomLogManager.java88 return Collections.enumeration(namedLoggers.keySet());
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java1713 Enumeration enumeration = table.getColumnModel().getColumns();
1714 while (enumeration.hasMoreElements()) {
1715 TableColumn aColumn = (TableColumn)enumeration.nextElement();
1728 Enumeration enumeration = table.getColumnModel().getColumns();
1729 while (enumeration.hasMoreElements()) {
1730 TableColumn aColumn = (TableColumn)enumeration.nextElement();
1743 Enumeration enumeration = table.getColumnModel().getColumns();
1744 while (enumeration.hasMoreElements()) {
1745 TableColumn aColumn = (TableColumn)enumeration.nextElement();
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/
H A DDTDGrammarUtil.java401 for (int i = 0; i < attrDecl.simpleType.enumeration.length; i++) {
405 buffer.append(attrDecl.simpleType.enumeration[i]);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/
H A DTDTDReader.java292 public void attributeDecl(String elementName, String attributeName, String attributeType, String[] enumeration, short attributeUse, String defaultValue) throws SAXException { argument
294 createAttribute(elementName, attributeName, attributeType, enumeration, attributeUse, defaultValue)
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultXMLDocumentHandler.java525 * @param enumeration If the type has the value "ENUMERATION" or
541 String type, String[] enumeration,
540 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 DAbstractXMLDocumentParser.java492 * @param enumeration If the type has the value "ENUMERATION" or
508 String type, String[] enumeration,
507 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) argument
H A DAbstractSAXParser.java904 * @param enumeration If the type has the value "ENUMERATION" or
921 String type, String[] enumeration,
946 for (int i = 0; i < enumeration.length; i++) {
947 str.append(enumeration[i]);
948 if (i < enumeration.length - 1) {
920 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) argument
H A DAbstractDOMParser.java2352 * @param enumeration If the type has the value "ENUMERATION" or
2368 String type, String[] enumeration,
2381 for (int i = 0; i < enumeration.length; i++) {
2385 fInternalSubset.append (enumeration[i]);
2367 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) argument
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DDTDGrammar.java135 /** Attribute declaration enumeration values. */
278 * @param enumeration If the type has the value "ENUMERATION", this
294 String type, String[] enumeration,
348 fSimpleType.enumeration = enumeration;
690 fAttributeDeclEnumeration[attrChunk][attrIndex] = attributeDecl.simpleType.enumeration;
293 attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) argument
/openjdk7/jdk/src/share/classes/java/security/
H A DBasicPermission.java467 * Returns an enumeration of all the BasicPermission objects in the
470 * @return an enumeration of all the BasicPermission objects.
476 return Collections.enumeration(perms.values());
H A DPermissions.java193 * Returns an enumeration of all the Permission objects in all the
196 * @return an enumeration of all the Permissions.
534 * Returns an enumeration of all the Permission objects in the container.
536 * @return an enumeration of all the Permissions.
542 return Collections.enumeration(permsMap.values());
/openjdk7/jdk/src/share/classes/java/util/
H A DPropertyPermission.java590 * Returns an enumeration of all the PropertyPermission objects in the
593 * @return an enumeration of all the PropertyPermission objects.
599 return Collections.enumeration(perms.values());
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCRLExtensions.java217 * Return an enumeration of the extensions.
218 * @return an enumeration of the extensions in this CRL.
221 return Collections.enumeration(map.values());
H A DCertificateExtensions.java251 * Return an enumeration of names of attributes existing within this
255 return Collections.enumeration(map.values());
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/
H A DRMIGenerator.java618 for (Enumeration<ClassDefinition> enumeration = catchList.elements();
619 enumeration.hasMoreElements();)
621 ClassDefinition def = enumeration.nextElement();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLDTDValidator.java1374 String [] enumVals = attributeDecl.simpleType.enumeration;
1758 for (int i=0; i<attrDecl.simpleType.enumeration.length ; i++) {
1762 buffer.append(attrDecl.simpleType.enumeration[i]);
H A DDTDGrammar.java212 /** Attribute declaration enumeration values. */
589 * @param enumeration If the type has the value "ENUMERATION", this
605 String type, String[] enumeration,
655 fSimpleType.enumeration = enumeration;
1883 fAttributeDeclEnumeration[attrChunk][attrIndex] = attributeDecl.simpleType.enumeration;
604 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/toJavaPortable/
H A DUnionGen.java330 // cull out those elements in the enumeration list that are
647 Enumeration enumeration = labels.elements() ;
648 while (enumeration.hasMoreElements()) {
649 Expression expr = (Expression)(enumeration.nextElement()) ;
/openjdk7/jdk/src/share/classes/java/io/
H A DFilePermission.java795 * Returns an enumeration of all the FilePermission objects in the
798 * @return an enumeration of all the FilePermission objects.
804 return Collections.enumeration(perms);
/openjdk7/jdk/src/share/classes/java/net/
H A DSocketPermission.java1307 * Returns an enumeration of all the SocketPermission objects in the
1310 * @return an enumeration of all the SocketPermission objects.
1316 return Collections.enumeration(perms);
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarVerifier.java744 signers = Collections.enumeration(map.keySet());
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDAbstractTraverser.java312 // declared with the same name as the enumeration value.
360 reportSchemaError("s4s-elt-must-match.1", new Object[]{"enumeration", "(annotation?)", DOMUtil.getLocalName(child)}, child);
562 xsFacets.enumeration = enumData;
726 * the type is NOTATION without enumeration facet
733 reportSchemaError("enumeration-required-notation", new Object[]{typeDecl.getName(), refName, DOMUtil.getLocalName(elem)}, elem);

Completed in 110 milliseconds

123