Main Page   Packages   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

ASTDottedExpr.java

00001 package edu.ksu.cis.bandera.abstraction.predicate.parser;
00002 
00003 /* Generated By:JJTree: Do not edit this line. ASTDottedExpr.java */
00004 public class ASTDottedExpr extends SimpleNode {
00005   // Added attributes begin
00006   private String context;
00007   // Added code end
00008 
00009   public ASTDottedExpr(int id) {
00010     super(id);
00011   }  
00012   public ASTDottedExpr(PredicateParser p, int id) {
00013     super(p, id);
00014   }  
00015   // Added attributes end
00016 
00017   // Added code begin
00018   public String getContext() { return context; }  
00019   /** Accept the visitor. **/
00020   public Object jjtAccept(PredicateParserVisitor visitor, Object data) {
00021     return visitor.visit(this, data);
00022   }  
00023   public static Node jjtCreate(int id) {
00024       return new ASTDottedExpr(id);
00025   }  
00026   public static Node jjtCreate(PredicateParser p, int id) {
00027       return new ASTDottedExpr(p, id);
00028   }  
00029   public void setContext(String s) { context = s; }  
00030 }

Generated at Thu Feb 7 06:39:53 2002 for Bandera by doxygen1.2.10 written by Dimitri van Heesch, © 1997-2001