KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > aspectwerkz > expression > ast > ASTWithin


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4
5 /* Generated By:JJTree: Do not edit this line. ASTWithin.java */
6
7 package com.tc.aspectwerkz.expression.ast;
8
9 public class ASTWithin extends SimpleNode {
10   public ASTWithin(int id) {
11     super(id);
12   }
13
14   public ASTWithin(ExpressionParser p, int id) {
15     super(p, id);
16   }
17
18   /**
19    * Accept the visitor. *
20    */

21   public Object JavaDoc jjtAccept(ExpressionParserVisitor visitor, Object JavaDoc data) {
22     return visitor.visit(this, data);
23   }
24 }
Popular Tags