// ** This class was generated with DemFGen (vers:10/21/2008) package gen; import edu.neu.ccs.demeterf.demfgen.lib.*; public class Store{ public List> stores; public Store(List> stores){ this.stores = stores; } public boolean equals(Object o){ if(!(o instanceof Store))return false; Store oo = (Store)o; return (((Object)stores).equals(oo.stores)); } public static Store parse(String inpt) throws ParseException{ return new TheParser(new java.io.StringBufferInputStream(inpt)).parse_Store(); } public static Store parse(java.io.InputStream inpt) throws ParseException{ return new TheParser(inpt).parse_Store(); } public static Store parse(java.io.Reader inpt) throws ParseException{ return new TheParser(inpt).parse_Store(); } public static class stores extends edu.neu.ccs.demeterf.control.Fields.any{} public String print(){ return gen.Print.PrintM(this); } }