Package jmri.jmrix.srcp.parser
Interface Node
-
- All Known Implementing Classes:
ASTbus,ASTcommandresponse,ASTdescription,ASTdevicegroup,ASTerror,ASTfb,ASTga,ASTgl,ASThandshakeresponse,ASTinfo,ASTinforesponse,ASTlock,ASTnonzeroaddress,ASTok,ASTonoff,ASTport,ASTpower,ASTserver,ASTserviceversion,ASTsession,ASTsm,ASTtime,ASTtimestamp,ASTzeroaddress,SimpleNode
public interface Node
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetId()java.lang.ObjectjjtAccept(SRCPClientParserVisitor 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(SRCPClientParserVisitor visitor, java.lang.Object data)
-
-