Class Attr
java.lang.Object
com.japisoft.editix.editor.jsx.domapi.Node
com.japisoft.editix.editor.jsx.domapi.Attr
public class Attr extends Node
The Attr interface represents one of an element's attributes as an object. In most situations, you will directly retrieve the attribute value as a string (e.g., Element.getAttribute()), but certain functions (e.g., Element.getAttributeNode()) or means of iterating return Attr instances.
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
localName
java.lang.String
name
java.lang.String
namespaceURI
Element
ownerElement
java.lang.String
prefix
java.lang.String
value
Fields inherited from class com.japisoft.editix.editor.jsx.domapi.Node
baseURI, childNodes, firstChild, lastChild, nodeName, nodeType, nodeValue, parentNode, tagName, textContent
-
Constructor Summary
-
Method Summary
Methods inherited from class com.japisoft.editix.editor.jsx.domapi.Node
appendChild, cloneNode, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild
-
Field Details
-
localName
public java.lang.String localName -
name
public java.lang.String name -
namespaceURI
public java.lang.String namespaceURI -
ownerElement
-
prefix
public java.lang.String prefix -
value
public java.lang.String value
-
-
Constructor Details