// ** This class was generated with DemFGen (vers:09/27/2009) package gen; import edu.neu.ccs.demeterf.lib.*; /** Representation of Undef */ public class Undef extends StkOp{ /** Construct a(n) Undef Instance */ public Undef(){ } /** Is the given object Equal to this Undef? */ public boolean equals(Object o){ if(!(o instanceof Undef))return false; if(o == this)return true; Undef oo = (Undef)o; return true; } /** Parse an instance of Undef from the given String */ public static Undef parse(String inpt) throws ParseException{ return new TheParser(new java.io.StringReader(inpt)).parse_Undef(); } /** Parse an instance of Undef from the given Stream */ public static Undef parse(java.io.InputStream inpt) throws ParseException{ return new TheParser(inpt).parse_Undef(); } /** Parse an instance of Undef from the given Reader */ public static Undef parse(java.io.Reader inpt) throws ParseException{ return new TheParser(inpt).parse_Undef(); } ExecStack eval(ExecStack s){ return s.popEnv(); } /** DGP method from Class Print */ public String print(){ return gen.Print.PrintM(this); } }