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