Searched defs:attrName (Results 1 - 25 of 26) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAttributeSet.java101 * @param attrName the attribute name
104 public boolean isDefined(Object attrName); argument
H A DSimpleAttributeSet.java102 * @param attrName the attribute name
105 public boolean isDefined(Object attrName) { argument
106 return table.containsKey(attrName);
357 public boolean isDefined(Object attrName) { argument
H A DStyleContext.java1400 * @param attrName the non-null attribute name
1404 public boolean isDefined(Object attrName) { argument
1405 return attributes.isDefined(attrName);
1434 * @param attrName the non-null attribute name
1438 public Object getAttribute(Object attrName) { argument
1439 return attributes.getAttribute(attrName);
H A DAbstractDocument.java1859 * @param attrName the non-null attribute name
1863 public boolean isDefined(Object attrName) { argument
1864 return attributes.isDefined(attrName);
1891 * @param attrName the non-null attribute name
1895 public Object getAttribute(Object attrName) { argument
1896 Object value = attributes.getAttribute(attrName);
1903 value = a.getAttribute(attrName);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/events/
H A DMutationEventImpl.java36 String prevValue=null,newValue=null,attrName=null; field in class:MutationEventImpl
56 return attrName;
107 attrName=attrNameArg;
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DMBeanExceptionTest.java239 public Object getAttribute(String attrName) argument
241 if (attrName.equals("UncheckedException"))
248 String attrName = attr.getName();
249 if (attrName.equals("UncheckedException"))
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDOMUtil.java100 String attrName = attr.getNodeName();
102 element.setAttribute(attrName, attrValue);
104 ((AttrImpl)element.getAttributeNode(attrName)).setSpecified(false);
632 String attrName,
641 element.getAttribute(attrName).equals(attrValue)) {
659 String attrName,
668 element.getAttribute(attrName).equals(attrValue)) {
687 String attrName,
696 element.getAttribute(attrName).equals(attrValue)) {
630 getFirstChildElement(Node parent, String elemName, String attrName, String attrValue) argument
657 getLastChildElement(Node parent, String elemName, String attrName, String attrValue) argument
685 getNextSiblingElement(Node node, String elemName, String attrName, String attrValue) argument
H A DXMLAttributesImpl.java363 * @param attrName The new attribute name.
365 public void setName(int attrIndex, QName attrName) { argument
366 fAttributes[attrIndex].name.setValues(attrName);
374 * @param attrName The attribute name structure to fill in.
376 public void getName(int attrIndex, QName attrName) { argument
377 attrName.setValues(fAttributes[attrIndex].name);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLAttributes.java97 * @param attrName The attribute name.
113 public int addAttribute(QName attrName, String attrType, String attrValue); argument
171 * @param attrName The new attribute name.
173 public void setName(int attrIndex, QName attrName); argument
180 * @param attrName The attribute name structure to fill in.
182 public void getName(int attrIndex, QName attrName); argument
/openjdk7/jdk/src/share/classes/java/security/
H A DSecurity.java875 String attrName = filterComponents[2];
877 return getProvidersNotUsingCache(serviceName, algName, attrName,
884 String attrName,
891 attrName, filterValue)) {
905 String attrName,
909 if (attrName != null) {
910 key += ' ' + attrName;
926 if (attrName != null) {
927 key += ' ' + attrName;
944 if (attrName
881 getProvidersNotUsingCache( String serviceName, String algName, String attrName, String filterValue, Provider[] allProviders) argument
902 isCriterionSatisfied(Provider prov, String serviceName, String algName, String attrName, String filterValue) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataFormat.java421 * @param attrName the name of the attribute being queried.
428 * @exception IllegalArgumentException if <code>attrName</code> is
432 int getAttributeValueType(String elementName, String attrName); argument
443 * @param attrName the name of the attribute being queried.
450 * @exception IllegalArgumentException if <code>attrName</code> is
454 int getAttributeDataType(String elementName, String attrName); argument
461 * @param attrName the name of the attribute being queried.
468 * @exception IllegalArgumentException if <code>attrName</code> is
472 boolean isAttributeRequired(String elementName, String attrName); argument
481 * @param attrName th
493 getAttributeDefaultValue(String elementName, String attrName) argument
516 getAttributeEnumerations(String elementName, String attrName) argument
543 getAttributeMinValue(String elementName, String attrName) argument
571 getAttributeMaxValue(String elementName, String attrName) argument
596 getAttributeListMinLength(String elementName, String attrName) argument
623 getAttributeListMaxLength(String elementName, String attrName) argument
647 getAttributeDescription(String elementName, String attrName, Locale locale) argument
[all...]
H A DIIOMetadataFormatImpl.java117 String attrName; field in class:IIOMetadataFormatImpl.Attribute
288 private Attribute getAttribute(String elementName, String attrName) { argument
290 Attribute attr = (Attribute)element.attrMap.get(attrName);
293 attrName + "\"!");
428 * @param attrName the name of the attribute being added.
438 * @exception IllegalArgumentException if <code>attrName</code> is
444 String attrName,
449 if (attrName == null) {
450 throw new IllegalArgumentException("attrName == null!");
457 attr.attrName
443 addAttribute(String elementName, String attrName, int dataType, boolean required, String defaultValue) argument
498 addAttribute(String elementName, String attrName, int dataType, boolean required, String defaultValue, List<String> enumeratedValues) argument
572 addAttribute(String elementName, String attrName, int dataType, boolean required, String defaultValue, String minValue, String maxValue, boolean minInclusive, boolean maxInclusive) argument
631 addAttribute(String elementName, String attrName, int dataType, boolean required, int listMinLength, int listMaxLength) argument
680 addBooleanAttribute(String elementName, String attrName, boolean hasDefaultValue, boolean defaultValue) argument
711 removeAttribute(String elementName, String attrName) argument
1050 getAttributeValueType(String elementName, String attrName) argument
1055 getAttributeDataType(String elementName, String attrName) argument
1060 isAttributeRequired(String elementName, String attrName) argument
1065 getAttributeDefaultValue(String elementName, String attrName) argument
1071 getAttributeEnumerations(String elementName, String attrName) argument
1085 getAttributeMinValue(String elementName, String attrName) argument
1097 getAttributeMaxValue(String elementName, String attrName) argument
1109 getAttributeListMinLength(String elementName, String attrName) argument
1118 getAttributeListMaxLength(String elementName, String attrName) argument
1163 getAttributeDescription(String elementName, String attrName, Locale locale) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DElementProxy.java518 protected void setLocalIdAttribute(String attrName, String value) { argument
521 Attr attr = getDocument().createAttributeNS(null, attrName);
527 getElement().removeAttributeNS(null, attrName);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlTree.java68 * @param attrName name of the attribute
71 public void addAttr(HtmlAttr attrName, String attrValue) { argument
74 attrs.put(nullCheck(attrName), nullCheck(attrValue));
707 * @param attrName name of the attribute to check within the HTML tree
710 public boolean hasAttr(HtmlAttr attrName) { argument
711 return (attrs.containsKey(attrName));
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFGenerator.java465 Object attrName,
473 attrName, MagicToken)) != null) {
463 checkNumericControlWord(MutableAttributeSet currentAttributes, AttributeSet newAttributes, Object attrName, String controlWord, float dflt, float scale) argument
/openjdk7/jdk/src/share/classes/java/net/
H A DHttpCookie.java983 public void assign(HttpCookie cookie, String attrName, String attrValue); argument
989 public void assign(HttpCookie cookie, String attrName, String attrValue) {
994 public void assign(HttpCookie cookie, String attrName, String attrValue) {
999 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1004 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1009 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1019 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1024 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1029 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1034 public void assign(HttpCookie cookie, String attrName, Strin
1056 assignAttribute(HttpCookie cookie, String attrName, String attrValue) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipher.java384 private static int supports(Service s, String attrName, String value) { argument
388 String regexp = s.getAttribute(attrName);
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DRequiredModelMBean.java1447 * @param attrName A String specifying the name of the
1488 public Object getAttribute(String attrName) argument
1491 if (attrName == null)
1501 mth, "Entry with " + attrName);
1511 attrName);
1513 ModelMBeanAttributeInfo attrInfo = modelMBeanInfo.getAttribute(attrName);
1518 " ModelMBeanAttributeInfo not found for " + attrName);
1524 "getAttribute failed: " + attrName +
1551 mth, "invoking a getMethod for " + attrName);
1609 getDescriptor(attrName,"attribut
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMNormalizer.java1537 public void setName(int attrIndex, QName attrName){ argument
1541 public void getName(int attrIndex, QName attrName){ argument
1543 updateQName((Node)fAttributes.getItem(attrIndex), attrName);
H A DDeferredDocumentImpl.java418 * @param attrName
427 String attrName,
435 int attrNodeIndex = createDeferredAttribute(attrName, attrURI, attrValue, specified);
479 String attrName, String attrURI,
482 int attrNodeIndex = createDeferredAttribute(attrName, attrURI,
510 public int createDeferredAttribute(String attrName, String attrValue, argument
512 return createDeferredAttribute(attrName, null, attrValue, specified);
516 public int createDeferredAttribute(String attrName, String attrURI, argument
523 setChunkValue(fNodeName, attrName, chunk, index);
676 String attrName
426 setDeferredAttribute(int elementNodeIndex, String attrName, String attrURI, String attrValue, boolean specified, boolean id, Object type) argument
478 setDeferredAttribute(int elementNodeIndex, String attrName, String attrURI, String attrValue, boolean specified) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DAttribute.java381 public Attribute getAttribute(String attrName) { argument
384 if (a.name().equals(attrName))
399 public Attribute removeAttribute(String attrName) { argument
400 return removeAttribute(getAttribute(attrName));
407 public void strip(String attrName) { argument
408 removeAttribute(getAttribute(attrName));
H A DPackage.java590 public void strip(String attrName) { argument
591 if ("Code".equals(attrName))
594 code.strip(attrName);
595 super.strip(attrName);
624 public void strip(String attrName) { argument
625 if ("InnerClass".equals(attrName))
632 m.strip(attrName);
635 super.strip(attrName);
1154 public void strip(String attrName) { argument
1156 c.strip(attrName);
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassWriter.java574 int writeAttr(Name attrName) { argument
575 databuf.appendChar(pool.put(attrName));
H A DClassReader.java1149 void unrecognized(Name attrName) { argument
1151 printCCF("ccf.unrecognized.attribute", attrName);
1271 Name attrName = readName(nextChar());
1273 AttributeReader r = attributeReaders.get(attrName);
1277 unrecognized(attrName);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DProxyClient.java1007 private Object getAttribute(ObjectName objName, String attrName) argument
1011 objName, Collections.singleton(attrName));
1012 Object value = values.get(attrName);
1013 if (value != null || values.containsKey(attrName)) {
1019 return conn.getAttribute(objName, attrName);
1029 for (String attrName : attrNames) {
1030 final Object value = values.get(attrName);
1031 if (value != null || values.containsKey(attrName)) {
1032 list.add(new Attribute(attrName, value));

Completed in 191 milliseconds

12