// ** This class was generated with DemFGen (vers:02/27/2009) package gen; import edu.neu.ccs.demeterf.demfgen.lib.*; import edu.neu.ccs.demeterf.*; /** Abstract representation of PlaceWithMoney */ public abstract class PlaceWithMoney{ /** Parse an instance of PlaceWithMoney from the given String */ public static PlaceWithMoney parse(String inpt) throws ParseException{ return new TheParser(new java.io.StringReader(inpt)).parse_PlaceWithMoney(); } /** Parse an instance of PlaceWithMoney from the given Stream */ public static PlaceWithMoney parse(java.io.InputStream inpt) throws ParseException{ return new TheParser(inpt).parse_PlaceWithMoney(); } /** Parse an instance of PlaceWithMoney from the given Reader */ public static PlaceWithMoney parse(java.io.Reader inpt) throws ParseException{ return new TheParser(inpt).parse_PlaceWithMoney(); } /** DGP method from Class Display */ public String display(){ return gen.Display.DisplayM(this); } /** DGP method from Class Print */ public String print(){ return gen.Print.PrintM(this); } /** DGP method from Class ToStr */ public String toStr(){ return gen.ToStr.ToStrM(this); } }