// ** This class was generated with DemFGen (vers:10/11/2008) package classes; import edu.neu.ccs.demeterf.demfgen.lib.*; public abstract class TransactionType{ public static TransactionType parse(String inpt) throws ParseException{ return new TheParser(new java.io.StringBufferInputStream(inpt)).parse_TransactionType(); } public static TransactionType parse(java.io.InputStream inpt) throws ParseException{ return new TheParser(inpt).parse_TransactionType(); } public static TransactionType parse(java.io.Reader inpt) throws ParseException{ return new TheParser(inpt).parse_TransactionType(); } public String print(){ return classes.Print.PrintM(this); } }