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

ASTInstanceOfExpr.java

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

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