00001 package edu.ksu.cis.bandera.abstraction.predicate.parser; 00002 00003 import java.util.*; 00004 00005 public abstract class ASTSingleExpr extends SimpleNode { 00006 // Added attribute begin 00007 private SimpleNode expr; 00008 // Added code end 00009 00010 public ASTSingleExpr(int id) { 00011 super(id); 00012 } 00013 public ASTSingleExpr(PredicateParser p, int id) { 00014 super(p, id); 00015 } 00016 public SimpleNode getExpr() { return expr; } 00017 // Added attribute end 00018 00019 // Added code begin 00020 public void setExpr(SimpleNode n) { expr = n; } 00021 }