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