00001 package edu.ksu.cis.bandera.abstraction.predicate.parser;
00002
00003
00004 public class ASTCastExpr extends SimpleNode {
00005
00006 private SimpleNode t, expr;
00007
00008
00009 public ASTCastExpr(int id) {
00010 super(id);
00011 }
00012 public ASTCastExpr(PredicateParser p, int id) {
00013 super(p, id);
00014 }
00015 public SimpleNode getExpr() { return expr; }
00016 public SimpleNode getType() { return t; }
00017
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 ASTCastExpr(id);
00023 }
00024 public static Node jjtCreate(PredicateParser p, int id) {
00025 return new ASTCastExpr(p, id);
00026 }
00027 public void setExpr(SimpleNode e) { expr = e; }
00028
00029
00030
00031 public void setType(SimpleNode tt) { t = tt; }
00032 }