first commit
This commit is contained in:
19
hrmsEjb/org/nfunk/jep/Node.java
Normal file
19
hrmsEjb/org/nfunk/jep/Node.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package org.nfunk.jep;
|
||||
|
||||
public interface Node {
|
||||
void jjtOpen();
|
||||
|
||||
void jjtClose();
|
||||
|
||||
void jjtSetParent(Node paramNode);
|
||||
|
||||
Node jjtGetParent();
|
||||
|
||||
void jjtAddChild(Node paramNode, int paramInt);
|
||||
|
||||
Node jjtGetChild(int paramInt);
|
||||
|
||||
int jjtGetNumChildren();
|
||||
|
||||
Object jjtAccept(ParserVisitor paramParserVisitor, Object paramObject) throws ParseException;
|
||||
}
|
Reference in New Issue
Block a user