Searched refs:attrNames (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DHTMLdtd.java301 String[] attrNames;
303 attrNames = (String[]) _boolAttrs.get( tagName.toUpperCase(Locale.ENGLISH) );
304 if ( attrNames == null )
306 for ( int i = 0 ; i < attrNames.length ; ++i )
307 if ( attrNames[ i ].equalsIgnoreCase( attrName ) )
455 private static void defineBoolean( String tagName, String[] attrNames )
457 _boolAttrs.put( tagName, attrNames );
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DProxyClient.java1023 ObjectName objName, String[] attrNames) throws
1027 new TreeSet<String>(Arrays.asList(attrNames)));
1029 for (String attrName : attrNames) {
1039 ObjectName objName, Set<String> attrNames) throws
1042 if (values != null && values.keySet().containsAll(attrNames)) {
1045 attrNames = new TreeSet<String>(attrNames);
1048 attrNames.addAll(oldNames);
1053 attrNames.toArray(new String[attrNames
1022 getAttributes( ObjectName objName, String[] attrNames) argument
1038 getCachedAttributes( ObjectName objName, Set<String> attrNames) argument
[all...]
/openjdk7/jdk/test/javax/management/monitor/
H A DMultiMonitorTest.java72 final String[] attrNames =
94 proxies[i].setObservedAttribute(attrNames[i]);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassWriter.java317 LinkedHashSet<String> attrNames = new LinkedHashSet<String>();
319 attrNames.add(e.getName()); // uniquifying
321 attrNames.removeAll(nonAttrTags());
322 u2(attrNames.size());
323 if (attrNames.isEmpty()) {
335 for (String utag : attrNames) {
H A DXMLKit.java1797 public Iterable<String> attrNames() { method in class:XMLKit.Element
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DRequiredModelMBean.java1764 * attrNames array passed in.
1766 * @param attrNames A String array of names of the attributes
1777 public AttributeList getAttributes(String[] attrNames) { argument
1784 if (attrNames == null)
1791 for (int i = 0; i < attrNames.length; i++) {
1793 responseList.add(new Attribute(attrNames[i],
1794 getAttribute(attrNames[i])));
1802 "Failed to get \"" + attrNames[i] + "\": ", e);

Completed in 711 milliseconds