// ** This file was generated with DemFGen (vers:12/15/2010) package gen; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.*; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.*; import java.lang.Integer; /** Representation of PG_DecisionTree */ public class PG_DecisionTree{ /** Construct a(n) PG_DecisionTree Instance */ public PG_DecisionTree(){ } /** Is the given object Equal to this PG_DecisionTree? */ public boolean equals(Object o){ if(!(o instanceof PG_DecisionTree))return false; if(o == this)return true; PG_DecisionTree oo = (PG_DecisionTree)o; return true; } /** Parse an instance of PG_DecisionTree from the given String */ public static PG_DecisionTree parse(String inpt) throws gen.ParseException{ return new gen.TheParser(new java.io.StringReader(inpt)).parse_PG_DecisionTree(); } /** Parse an instance of PG_DecisionTree from the given Stream */ public static PG_DecisionTree parse(java.io.InputStream inpt) throws gen.ParseException{ return new gen.TheParser(inpt).parse_PG_DecisionTree(); } /** Parse an instance of PG_DecisionTree from the given Reader */ public static PG_DecisionTree parse(java.io.Reader inpt) throws gen.ParseException{ return new gen.TheParser(inpt).parse_PG_DecisionTree(); } /** 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); } }