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

/openjdk7/jaxp/src/org/w3c/dom/
H A DElement.java147 * @param newAttr The <code>Attr</code> node to add to the attribute list.
148 * @return If the <code>newAttr</code> attribute replaces an existing
152 * WRONG_DOCUMENT_ERR: Raised if <code>newAttr</code> was created from a
155 * <br>INUSE_ATTRIBUTE_ERR: Raised if <code>newAttr</code> is already an
160 public Attr setAttributeNode(Attr newAttr) argument
316 * @param newAttr The <code>Attr</code> node to add to the attribute list.
317 * @return If the <code>newAttr</code> attribute replaces an existing
322 * WRONG_DOCUMENT_ERR: Raised if <code>newAttr</code> was created from a
325 * <br>INUSE_ATTRIBUTE_ERR: Raised if <code>newAttr</code> is already an
334 public Attr setAttributeNodeNS(Attr newAttr) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultElement.java120 public Attr setAttributeNode(Attr newAttr) throws DOMException { argument
135 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DElementImpl.java496 Attr newAttr = getAttributeNode(name);
497 if (newAttr == null) {
498 newAttr = getOwnerDocument().createAttribute(name);
504 newAttr.setNodeValue(value);
505 attributes.setNamedItem(newAttr);
508 newAttr.setNodeValue(value);
526 public Attr setAttributeNode(Attr newAttr) argument
542 if (newAttr.getOwnerDocument() != ownerDocument) {
552 return (Attr) attributes.setNamedItem(newAttr);
655 Attr newAttr
787 setAttributeNodeNS(Attr newAttr) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.java829 public Attr setAttributeNode(Attr newAttr) throws DOMException { argument
830 Element owner = newAttr.getOwnerElement();
841 if (newAttr instanceof IIOAttr) {
842 attr = (IIOAttr)newAttr;
846 newAttr.getName(),
847 newAttr.getValue());
861 * Equivalent to <code>setAttributeNode(newAttr)</code>.
865 public Attr setAttributeNodeNS(Attr newAttr) { argument
866 return setAttributeNode(newAttr);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMNodeProxy.java1200 * @param newAttr
1208 public final Attr setAttributeNode(Attr newAttr) throws DOMException argument
1317 * @param newAttr
1325 public final Attr setAttributeNodeNS(Attr newAttr) throws DOMException argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DUnImplNode.java303 * @param newAttr Attribute node to be added to this node's list of attributes
309 public Attr setAttributeNode(Attr newAttr) throws DOMException argument
439 * @param newAttr Attribute to set
445 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException argument

Completed in 336 milliseconds