01: //
02: // Generated by JTB 1.2.1
03: //
04:
05: package oscript.syntaxtree;
06:
07: /**
08: * The interface which all syntax tree classes must implement.
09: */
10: public interface Node extends java.io.Serializable {
11: public void accept(oscript.visitor.Visitor v);
12:
13: public Object accept(oscript.visitor.ObjectVisitor v, Object argu);
14:
15: }
|