|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object groovy.util.slurpersupport.Node
public class Node extends java.lang.Object
Represents a node.
Constructor Summary | |
Node(Node parent, java.lang.String name, java.util.Map attributes, java.util.Map attributeNamespaces, java.lang.String namespaceURI)
@param parent the parent node |
Method Summary | |
---|---|
void
|
addChild(java.lang.Object child)
Adds an object as a new child to this Node. |
protected void
|
appendNode(java.lang.Object newValue, GPathResult result)
|
java.util.Map
|
attributes()
Returns a map of the attributes of this Node. |
void
|
build(GroovyObject builder, java.util.Map namespaceMap, java.util.Map namespaceTagHints)
|
java.util.Iterator
|
childNodes()
Returns an iterator over the child nodes of this Node. |
java.util.List
|
children()
Returns a list of the children of this Node. |
java.lang.String
|
name()
Returns the name of this Node. |
java.lang.String
|
namespaceURI()
Returns the URI of the namespace of this Node. |
protected void
|
replaceBody(java.lang.Object newValue)
Replaces the current body of this Node with the passed object. |
void
|
replaceNode(Closure replacementClosure, GPathResult result)
|
java.lang.String
|
text()
Returns a string containing the text of the children of this Node. |
java.io.Writer
|
writeTo(java.io.Writer out)
|
Methods inherited from class java.lang.Object | |
---|---|
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Constructor Detail |
---|
public Node(Node parent, java.lang.String name, java.util.Map attributes, java.util.Map attributeNamespaces, java.lang.String namespaceURI)
parent
- the parent nodename
- the name for the nodeattributes
- the attributes for the nodeattributeNamespaces
- the namespace mappings for attributesnamespaceURI
- the namespace URI if any
Method Detail |
---|
public void addChild(java.lang.Object child)
child
- the object to add as a child
protected void appendNode(java.lang.Object newValue, GPathResult result)
public java.util.Map attributes()
public void build(GroovyObject builder, java.util.Map namespaceMap, java.util.Map namespaceTagHints)
public java.util.Iterator childNodes()
public java.util.List children()
public java.lang.String name()
public java.lang.String namespaceURI()
protected void replaceBody(java.lang.Object newValue)
newValue
- the new body
public void replaceNode(Closure replacementClosure, GPathResult result)
public java.lang.String text()
public java.io.Writer writeTo(java.io.Writer out)
Groovy Documentation