Groovy Documentation

groovy.util.slurpersupport
[Java] Class Node

java.lang.Object
  groovy.util.slurpersupport.Node
All Implemented Interfaces:
Writable

public class Node
extends java.lang.Object

Represents a node.

Authors:
John Wilson


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

Node

public Node(Node parent, java.lang.String name, java.util.Map attributes, java.util.Map attributeNamespaces, java.lang.String namespaceURI)
Parameters:
parent - the parent node
name - the name for the node
attributes - the attributes for the node
attributeNamespaces - the namespace mappings for attributes
namespaceURI - the namespace URI if any


 
Method Detail

addChild

public void addChild(java.lang.Object child)
Adds an object as a new child to this Node.
Parameters:
child - the object to add as a child


appendNode

protected void appendNode(java.lang.Object newValue, GPathResult result)


attributes

public java.util.Map attributes()
Returns a map of the attributes of this Node.
Returns:
a map of the attributes of this Node


build

public void build(GroovyObject builder, java.util.Map namespaceMap, java.util.Map namespaceTagHints)


childNodes

public java.util.Iterator childNodes()
Returns an iterator over the child nodes of this Node.
Returns:
an iterator over the child nodes of this Node


children

public java.util.List children()
Returns a list of the children of this Node.
Returns:
a list of the children of this Node


name

public java.lang.String name()
Returns the name of this Node.
Returns:
the name of this Node


namespaceURI

public java.lang.String namespaceURI()
Returns the URI of the namespace of this Node.
Returns:
the namespace of this Node


replaceBody

protected void replaceBody(java.lang.Object newValue)
Replaces the current body of this Node with the passed object.
Parameters:
newValue - the new body


replaceNode

public void replaceNode(Closure replacementClosure, GPathResult result)


text

public java.lang.String text()
Returns a string containing the text of the children of this Node.
Returns:
a string containing the text of the children of this Node


writeTo

public java.io.Writer writeTo(java.io.Writer out)


 

Groovy Documentation