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