Methods Summary |
---|
public org.w3c.dom.NamedNodeMap | getAttributes()
NamedNodeMap nnm = wrap(node().getAttributes());
if (log.isTraceEnabled())
log.trace("getAttributes: " + nnm);
return nnm;
|
public java.lang.String | getLocalName()
log.trace("getLocalName");
return node().getLocalName();
|
public java.lang.String | getNamespaceURI()
log.trace("getNamespaceURI");
return node().getNamespaceURI();
|
public java.lang.String | getNodeName()
log.trace("getNodeName");
return node().getNodeName();
|
public short | getNodeType()
if (log.isTraceEnabled())
log.trace("getNodeType: " + getNodeName() + ": " + node().getNodeType());
return node().getNodeType();
|
public java.lang.String | getNodeValue()
log.trace("getNodeValue");
return node().getNodeValue();
|
public java.lang.String | getPrefix()
log.trace("getPrefix");
return node().getPrefix();
|
public boolean | hasAttributes()
log.trace("hasAttributes");
return node().hasAttributes();
|
public boolean | hasChildNodes()
log.trace("hasChildNodes");
return node().hasChildNodes();
|
public boolean | isSupported(java.lang.String s, java.lang.String s1)
log.trace("isSupported");
// Is this ok? What kind of features are they asking about?
return node().isSupported(s, s1);
|
protected org.w3c.dom.Node | node()Get the proxied Node value
return (Node) getPropertyValue();
|
public java.lang.String | toString()
return "ProxyNode for: " + node();
|
protected org.w3c.dom.Node | wrap(org.w3c.dom.Node node)Get and adapter to wrap the proxied node.
return getAdapterFactory().proxyNode(this, node);
|
protected org.w3c.dom.NamedNodeMap | wrap(org.w3c.dom.NamedNodeMap nnm)
return getAdapterFactory().proxyNamedNodeMap(this, nnm);
|