01: //
02: // Generated by JTB 1.2.2
03: //
04:
05: package xtc.lang.javacc.syntaxtree;
06:
07: /**
08: * Grammar production.
09: * <pre>
10: * f0 -> NestedClassDeclaration()
11: * | NestedInterfaceDeclaration()
12: * | MethodDeclaration()
13: * | FieldDeclaration()
14: * | ";"
15: * </pre>
16: */
17: public class InterfaceMemberDeclaration implements Node {
18: public NodeChoice f0;
19:
20: public InterfaceMemberDeclaration(NodeChoice n0) {
21: f0 = n0;
22: }
23:
24: public void accept(xtc.lang.javacc.visitor.Visitor v) {
25: v.visit(this );
26: }
27:
28: public Object accept(xtc.lang.javacc.visitor.ObjectVisitor v,
29: Object argu) {
30: return v.visit(this, argu);
31: }
32: }
|