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