Searched defs:oldAttr (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxp/src/org/w3c/dom/
H A DElement.java172 * @param oldAttr The <code>Attr</code> node to remove from the attribute
177 * <br>NOT_FOUND_ERR: Raised if <code>oldAttr</code> is not an attribute
180 public Attr removeAttributeNode(Attr oldAttr) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultElement.java115 public Attr removeAttributeNode(Attr oldAttr) throws DOMException { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DElementImpl.java441 public Attr removeAttributeNode(Attr oldAttr) argument
457 return (Attr) attributes.removeItem(oldAttr, true);
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.java850 Attr oldAttr = getAttributeNode(attr.getName());
851 if (oldAttr != null) {
852 removeAttributeNode(oldAttr);
857 return oldAttr;
869 public Attr removeAttributeNode(Attr oldAttr) { argument
870 removeAttribute(oldAttr.getName());
871 return oldAttr;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMNodeProxy.java1215 * @param oldAttr
1223 public final Attr removeAttributeNode(Attr oldAttr) throws DOMException argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DUnImplNode.java286 * @param oldAttr Attribute to be removed from this node's list of attributes
292 public Attr removeAttributeNode(Attr oldAttr) throws DOMException argument

Completed in 1554 milliseconds