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

/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DAttribute.java134 * @param attrVal The possibly null value to check. If null, check
136 * @return true if attrVal is one of this attribute's values; false otherwise.
140 boolean contains(Object attrVal); argument
144 * <tt>attrVal</tt> is already in the attribute, this method does nothing.
145 * If the attribute values are ordered, <tt>attrVal</tt> is added to the end of
151 * @param attrVal The new possibly null value to add. If null, null
155 boolean add(Object attrVal); argument
161 * <tt>attrVal</tt> is removed and attribute values at indices greater
296 * This method adds <tt>attrVal</tt> to the list of attribute values at
301 * If the attribute values are unordered and already have <tt>attrVal</t
312 add(int ix, Object attrVal) argument
334 set(int ix, Object attrVal) argument
[all...]
H A DBasicAttribute.java317 * <tt>Object.equals()</tt> is used when comparing <tt>attrVal</tt>
318 * with this attribute's values except when <tt>attrVal</tt> is an array.
323 public boolean contains(Object attrVal) { argument
324 return (find(attrVal) >= 0);
395 * By default, <tt>Object.equals()</tt> is used when comparing <tt>attrVal</tt>
396 * with this attribute's values except when <tt>attrVal</tt> is an array.
401 public boolean add(Object attrVal) { argument
402 if (isOrdered() || (find(attrVal) < 0)) {
403 values.addElement(attrVal);
413 * By default, <tt>Object.equals()</tt> is used when comparing <tt>attrVal</t
451 add(int ix, Object attrVal) argument
459 set(int ix, Object attrVal) argument
[all...]
/openjdk7/jdk/test/javax/print/attribute/
H A DAttributeTest.java48 Object attrVal = service[x].getSupportedAttributeValues(Media.class, flavors[y], null);
49 if (attrVal == null) {
52 Media attr[] = (Media[]) attrVal;
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapAttribute.java64 * @param attrVal The value to be added. If null, a null value is added to
68 public boolean add(Object attrVal) { argument
71 values.addElement(attrVal);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSAttributeChecker.java1045 String attrVal = DOMUtil.getValue(sattr);
1077 ((Vector)attrValues[ATTIDX_NONSCHEMA]).addElement(attrVal);
1081 //otherValues.put(attrName, attrVal);
1089 // values.addElement(attrVal);
1094 // values.addElement(attrVal);
1122 Object avalue = dv.validate(attrVal, schemaDoc.fValidationContext, null);
1131 attrValues[oneAttr.valueIndex] = attrVal;
1135 attrValues[oneAttr.valueIndex] = validate(attrValues, attrName, attrVal, oneAttr.dvIndex, schemaDoc);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java2985 public boolean test(String attrVal) { argument
2986 return attrVal != null; // override this
3004 public static Filter attrFilter(String attrName, final String attrVal) { argument
3005 if (attrVal == null) {
3012 return attrVal.equals(attrVal2);
3017 return "<AttrFilter name='" + attrName + "' value='" + attrVal + "'/>";

Completed in 52 milliseconds