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