| |
|
| java.lang.Object net.sf.saxon.dom.NodeOverNodeInfo net.sf.saxon.dom.AttrOverNodeInfo
AttrOverNodeInfo | public class AttrOverNodeInfo extends NodeOverNodeInfo implements Attr(Code) | | This class is an implementation of the DOM Element class that wraps a Saxon NodeInfo
representation of an attribute node.
|
getName | public String getName()(Code) | | Get the name of an attribute node (the QName) (DOM method)
|
getOwnerElement | public Element getOwnerElement()(Code) | | The Element node this attribute is attached to or
null if this attribute is not in use.
since: DOM Level 2 |
getSchemaTypeInfo | public TypeInfo getSchemaTypeInfo()(Code) | | Get the schema type information for this node. Returns null for an untyped node.
|
getSpecified | public boolean getSpecified()(Code) | | If this attribute was explicitly given a value in the original
document, this is true ; otherwise, it is
false . (DOM method)
Always true in this implementation. |
getValue | public String getValue()(Code) | | Return the character value of an attribute node (DOM method)
the attribute value |
setValue | public void setValue(String value) throws DOMException(Code) | | Set the value of an attribute node. (DOM method).
Always fails (because tree is readonly)
|
|
|
|