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