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