// ** This class was generated with DemFGen (vers:06/04/2009) package gen; import edu.neu.ccs.demeterf.demfgen.lib.*; /** Representation of Players */ public class Players{ public List players; /** Construct a(n) Players Instance */ public Players(List players){ this.players = players; } /** Is the given object Equal to this Players? */ public boolean equals(Object o){ if(!(o instanceof Players))return false; if(o == this)return true; Players oo = (Players)o; return (((Object)players).equals(oo.players)); } /** Parse an instance of Players from the given String */ public static Players parse(String inpt) throws ParseException{ return new TheParser(new java.io.StringReader(inpt)).parse_Players(); } /** Parse an instance of Players from the given Stream */ public static Players parse(java.io.InputStream inpt) throws ParseException{ return new TheParser(inpt).parse_Players(); } /** Parse an instance of Players from the given Reader */ public static Players parse(java.io.Reader inpt) throws ParseException{ return new TheParser(inpt).parse_Players(); } /** Field Class for Players.players */ public static class players extends edu.neu.ccs.demeterf.control.Fields.any{} /** DGP method from Class Display */ public String display(){ return gen.Display.DisplayM(this); } /** DGP method from Class PrintHeap */ public String print(){ return gen.PrintHeap.PrintHeapM(this); } /** DGP method from Class PrintHeapToString */ public String toString(){ return gen.PrintHeapToString.PrintHeapToStringM(this); } }