summaryrefslogtreecommitdiff
path: root/syntaxtree/Node.java
blob: 02a9bfa7d937cbeb21bdae453a8e7413a27eccdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// Generated by JTB 1.3.2
//

package syntaxtree;

/**
 * The interface which all syntax tree classes must implement.
 */
public interface Node extends java.io.Serializable {
   public void accept(visitor.Visitor v);
   public <R,A> R accept(visitor.GJVisitor<R,A> v, A argu);
   public <R> R accept(visitor.GJNoArguVisitor<R> v);
   public <A> void accept(visitor.GJVoidVisitor<A> v, A argu);
}