Uses of Interface
freemarker.core.Node

Packages that use Node
freemarker.core This package contains FreeMarker's core parsing/rendering functionality; most casual users do not need to be aware of the classes in this package, and can restrict their attention to the freemarker.template package. 
 

Uses of Node in freemarker.core
 

Methods in freemarker.core that return Node
 Node Node.jjtGetChild(int i)
          This method returns a child node.
 Node Node.jjtGetParent()
           
 

Methods in freemarker.core with parameters of type Node
 void Node.jjtAddChild(Node n, int i)
          This method tells the node to add its argument to the node's list of children.
 void Node.jjtSetParent(Node n)
          This pair of methods are used to inform the node of its parent.