01: //
02: // Generated by JTB 1.2.2
03: //
04:
05: package xtc.lang.javacc.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(xtc.lang.javacc.visitor.Visitor v);
12:
13: public Object accept(xtc.lang.javacc.visitor.ObjectVisitor v,
14: Object argu);
15:
16: }
|