Uses of Class
net.aethersanctum.curlyml.Node

Packages that use Node
net.aethersanctum.curlyml   
 

Uses of Node in net.aethersanctum.curlyml
 

Subclasses of Node in net.aethersanctum.curlyml
 class Document
          Document is nothing more than the implicit root node of a loaded CurlyML Tree.
 

Methods in net.aethersanctum.curlyml that return types with arguments of type Node
 java.util.List<Node> Node.getChildren()
          Get me all the children this node has.
 

Methods in net.aethersanctum.curlyml with parameters of type Node
 void Node.addChild(Node child)
          add a child to this node's child list.
 

Method parameters in net.aethersanctum.curlyml with type arguments of type Node
 void Node.setChildren(java.util.List<Node> children)
          Replace/set this node's child list.