Package jmri.jmris.simpleserver.parser
Interface Node
-
- All Known Implementing Classes:
ASTattributelist,ASTattributename,ASTcommand,ASTlight,ASTlightcmd,ASTlightdevice,ASTlocations,ASTonoff,ASToperations,ASToperationscmd,ASTpower,ASTpowercmd,ASTreporter,ASTreportercmd,ASTreporterdevice,ASTsensor,ASTsensorcmd,ASTsensordevice,ASTterminate,ASTthrownclosed,ASTtraincmd,ASTtrains,ASTturnout,ASTturnoutcmd,ASTturnoutdevice,ASTvalue,SimpleNode
public interface Node
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetId()java.lang.ObjectjjtAccept(JmriServerParserVisitor visitor, java.lang.Object data)voidjjtAddChild(Node n, int i)voidjjtClose()NodejjtGetChild(int i)intjjtGetNumChildren()NodejjtGetParent()voidjjtOpen()voidjjtSetParent(Node n)
-
-
-
Method Detail
-
jjtOpen
void jjtOpen()
-
jjtClose
void jjtClose()
-
jjtSetParent
void jjtSetParent(Node n)
-
jjtGetParent
Node jjtGetParent()
-
jjtAddChild
void jjtAddChild(Node n, int i)
-
jjtGetChild
Node jjtGetChild(int i)
-
jjtGetNumChildren
int jjtGetNumChildren()
-
getId
int getId()
-
jjtAccept
java.lang.Object jjtAccept(JmriServerParserVisitor visitor, java.lang.Object data)
-
-