|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectgroovy.util.slurpersupport.Node
public class Node extends Object
Represents a node.
Constructor Summary | |
Node(Node parent, String name, Map attributes, Map attributeNamespaces, String namespaceURI)
@param parent the parent node |
Method Summary | |
---|---|
void
|
addChild(Object child)
Adds an object as a new child to this Node. |
protected void
|
appendNode(Object newValue, GPathResult result)
|
Map
|
attributes()
Returns a map of the attributes of this Node. |
void
|
build(GroovyObject builder, Map namespaceMap, Map namespaceTagHints)
|
Iterator
|
childNodes()
Returns an iterator over the child nodes of this Node. |
List
|
children()
Returns a list of the children of this Node. |
String
|
name()
Returns the name of this Node. |
String
|
namespaceURI()
Returns the URI of the namespace of this Node. |
Node
|
parent()
Returns the parent of this Node. |
protected void
|
replaceBody(Object newValue)
Replaces the current body of this Node with the passed object. |
void
|
replaceNode(Closure replacementClosure, GPathResult result)
|
String
|
text()
Returns a string containing the text of the children of this Node. |
Writer
|
writeTo(Writer out)
|
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Constructor Detail |
---|
public Node(Node parent, String name, Map attributes, Map attributeNamespaces, 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(Object child)
child
- the object to add as a child
protected void appendNode(Object newValue, GPathResult result)
public Map attributes()
public void build(GroovyObject builder, Map namespaceMap, Map namespaceTagHints)
public Iterator childNodes()
public List children()
public String name()
public String namespaceURI()
public Node parent()
protected void replaceBody(Object newValue)
newValue
- the new body
public void replaceNode(Closure replacementClosure, GPathResult result)
public String text()
public Writer writeTo(Writer out)
Copyright © 2003-2013 The Codehaus. All rights reserved.