// ** This class was generated with DemFGen (vers:06/04/2009) package gen; import edu.neu.ccs.demeterf.demfgen.lib.*; /** Representation of TransactionType */ public abstract class TransactionType{ /** Construct a(n) TransactionType Instance */ public TransactionType(){ } /** Parse an instance of TransactionType from the given String */ public static TransactionType parse(String inpt) throws ParseException{ return new TheParser(new java.io.StringReader(inpt)).parse_TransactionType(); } /** Parse an instance of TransactionType from the given Stream */ public static TransactionType parse(java.io.InputStream inpt) throws ParseException{ return new TheParser(inpt).parse_TransactionType(); } /** Parse an instance of TransactionType from the given Reader */ public static TransactionType parse(java.io.Reader inpt) throws ParseException{ return new TheParser(inpt).parse_TransactionType(); } /** DGP method from Class Display */ public String display(){ return gen.Display.DisplayM(this); } /** DGP method from Class PrintHeap */ public String print(){ return gen.PrintHeap.PrintHeapM(this); } /** DGP method from Class PrintHeapToString */ public String toString(){ return gen.PrintHeapToString.PrintHeapToStringM(this); } }