01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04:
05: /* Generated By:JJTree: Do not edit this line. ASTExecution.java */
06:
07: package com.tc.aspectwerkz.expression.ast;
08:
09: public class ASTExecution extends SimpleNode {
10: public ASTExecution(int id) {
11: super (id);
12: }
13:
14: public ASTExecution(ExpressionParser p, int id) {
15: super (p, id);
16: }
17:
18: /**
19: * Accept the visitor. *
20: */
21: public Object jjtAccept(ExpressionParserVisitor visitor, Object data) {
22: return visitor.visit(this, data);
23: }
24: }
|