Lines Matching refs:name

51  * <code>Attr</code> object by name or an attribute value by name. In XML,
63 * The name of the element. If <code>Node.localName</code> is different
64 * from <code>null</code>, this attribute is a qualified name. For
77 * Retrieves an attribute value by name.
78 * @param name The name of the attribute to retrieve.
82 public String getAttribute(String name);
85 * Adds a new attribute. If an attribute with that name is already present
96 * <br>To set an attribute with a qualified name and namespace URI, use
98 * @param name The name of the attribute to create or alter.
101 * INVALID_CHARACTER_ERR: Raised if the specified name is not an XML
102 * name according to the XML version in use specified in the
106 public void setAttribute(String name,
111 * Removes an attribute by name. If a default value for the removed
114 * local name, and prefix when applicable. The implementation may handle
118 * <br>If no attribute with this name is found, this method has no effect.
119 * <br>To remove an attribute by local name and namespace URI, use the
121 * @param name The name of the attribute to remove.
125 public void removeAttribute(String name)
129 * Retrieves an attribute node by name.
130 * <br>To retrieve an attribute node by qualified name and namespace URI,
132 * @param name The name (<code>nodeName</code>) of the attribute to
134 * @return The <code>Attr</code> node with the specified name (
138 public Attr getAttributeNode(String name);
141 * Adds a new attribute node. If an attribute with that name (
145 * <br>To add a new attribute node with a qualified name and namespace
167 * corresponding namespace URI, local name, and prefix when applicable.
185 * with a given tag name, in document order.
186 * @param name The name of the tag to match on. The special value "*"
190 public NodeList getElementsByTagName(String name);
193 * Retrieves an attribute value by local name and namespace URI.
199 * @param localName The local name of the attribute to retrieve.
213 * Adds a new attribute. If an attribute with the same local name and
233 * @param qualifiedName The qualified name of the attribute to create or
237 * INVALID_CHARACTER_ERR: Raised if the specified qualified name is not
238 * an XML name according to the XML version in use specified in the
260 * Removes an attribute by local name and namespace URI. If a default
263 * corresponding namespace URI, local name, and prefix when applicable.
268 * <br>If no attribute with this local name and namespace URI is found,
275 * @param localName The local name of the attribute to remove.
288 * Retrieves an <code>Attr</code> node by local name and namespace URI.
294 * @param localName The local name of the attribute to retrieve.
296 * name and namespace URI or <code>null</code> if there is no such
309 * Adds a new attribute. If an attribute with that local name and that
318 * attribute with the same local name and namespace URI, the replaced
339 * <code>Elements</code> with a given local name and namespace URI in
343 * @param localName The local name of the elements to match on. The
358 * Returns <code>true</code> when an attribute with a given name is
361 * @param name The name of the attribute to look for.
362 * @return <code>true</code> if an attribute with the given name is
367 public boolean hasAttribute(String name);
370 * Returns <code>true</code> when an attribute with a given local name and
378 * @param localName The local name of the attribute to look for.
379 * @return <code>true</code> if an attribute with the given local name
408 * <br> To specify an attribute by local name and namespace URI, use the
410 * @param name The name of the attribute.
418 public void setIdAttribute(String name,
433 * @param localName The local name of the attribute.