Class SimpleNode
java.lang.Object
nablarch.test.tool.htmlcheck.parser.SimpleNode
- All Implemented Interfaces:
- Node
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidvoidjjtAddChild(Node n, int i) This method tells the node to add its argument to the node's list of children.voidjjtClose()This method is called after all the child nodes have been added.jjtGetChild(int i) This method returns a child node.intReturn the number of children the node has.voidjjtOpen()This method is called after the node has been made the current node.voidjjtSetParent(Node n) This pair of methods are used to inform the node of its parent.voidjjtSetValue(Object value) toString()
- 
Field Details- 
parent
- 
children
- 
idprotected int id
- 
value
- 
parser
 
- 
- 
Constructor Details- 
SimpleNodepublic SimpleNode(int i) 
- 
SimpleNode
 
- 
- 
Method Details- 
jjtOpenpublic void jjtOpen()Description copied from interface:NodeThis method is called after the node has been made the current node. It indicates that child nodes can now be added to it.
- 
jjtClosepublic void jjtClose()Description copied from interface:NodeThis method is called after all the child nodes have been added.
- 
jjtSetParentDescription copied from interface:NodeThis pair of methods are used to inform the node of its parent.- Specified by:
- jjtSetParentin interface- Node
 
- 
jjtGetParent- Specified by:
- jjtGetParentin interface- Node
 
- 
jjtAddChildDescription copied from interface:NodeThis method tells the node to add its argument to the node's list of children.- Specified by:
- jjtAddChildin interface- Node
 
- 
jjtGetChildDescription copied from interface:NodeThis method returns a child node. The children are numbered from zero, left to right.- Specified by:
- jjtGetChildin interface- Node
 
- 
jjtGetNumChildrenpublic int jjtGetNumChildren()Description copied from interface:NodeReturn the number of children the node has.- Specified by:
- jjtGetNumChildrenin interface- Node
 
- 
jjtSetValue
- 
jjtGetValue
- 
toString
- 
toString
- 
dump
 
-