|
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)
|
protected void
|
appendNode(java.lang.Object newValue, GPathResult result)
|
java.util.Map
|
attributes()
|
void
|
build(GroovyObject builder, java.util.Map namespaceMap, java.util.Map namespaceTagHints)
|
java.util.Iterator
|
childNodes()
|
java.util.List
|
children()
|
java.lang.String
|
name()
|
java.lang.String
|
namespaceURI()
|
protected void
|
replaceBody(java.lang.Object newValue)
|
void
|
replaceNode(Closure replacementClosure, GPathResult result)
|
java.lang.String
|
text()
|
java.io.Writer
|
writeTo(java.io.Writer out)
|
Methods inherited from class java.lang.Object | |
---|---|
java.lang.Object#wait(long), java.lang.Object#wait(long, int), 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)
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)
public void replaceNode(Closure replacementClosure, GPathResult result)
public java.lang.String text()
public java.io.Writer writeTo(java.io.Writer out)
Groovy Documentation