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. ASTWithinCode.java */
06:
07: package com.tc.aspectwerkz.expression.ast;
08:
09: public class ASTWithinCode extends SimpleNode {
10: private boolean m_staticInitializer = false;
11:
12: public ASTWithinCode(int id) {
13: super (id);
14: }
15:
16: public ASTWithinCode(ExpressionParser p, int id) {
17: super (p, id);
18: }
19:
20: /**
21: * Accept the visitor. *
22: */
23: public Object jjtAccept(ExpressionParserVisitor visitor, Object data) {
24: return visitor.visit(this , data);
25: }
26:
27: /**
28: * @return Returns the staticinitializer.
29: */
30: public boolean isStaticInitializer() {
31: return m_staticInitializer;
32: }
33:
34: /**
35: * @param staticinitializer The staticinitializer to set.
36: */
37: public void setStaticInitializer(boolean staticinitializer) {
38: m_staticInitializer = staticinitializer;
39: }
40: }
|