// ** 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_Instance */ public class SCG_Instance{ /** Construct a(n) SCG_Instance Instance */ public SCG_Instance(){ } /** Is the given object Equal to this SCG_Instance? */ public boolean equals(Object o){ if(!(o instanceof SCG_Instance))return false; if(o == this)return true; SCG_Instance oo = (SCG_Instance)o; return true; } /** Parse an instance of SCG_Instance from the given String */ public static SCG_Instance parse(String inpt) throws gen.ParseException{ return new gen.TheParser(new java.io.StringReader(inpt)).parse_SCG_Instance(); } /** Parse an instance of SCG_Instance from the given Stream */ public static SCG_Instance parse(java.io.InputStream inpt) throws gen.ParseException{ return new gen.TheParser(inpt).parse_SCG_Instance(); } /** Parse an instance of SCG_Instance from the given Reader */ public static SCG_Instance parse(java.io.Reader inpt) throws gen.ParseException{ return new gen.TheParser(inpt).parse_SCG_Instance(); } /** 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); } }