// ** This class was generated with DemFGen !! package gen; import edu.neu.ccs.demeterf.demfgen.lib.*; public class History{ public List rounds; public History(List rounds){ this.rounds = rounds; } public boolean equals(Object o){ if(!(o instanceof History))return false; History oo = (History)o; return (((Object)rounds).equals(oo.rounds)); } public static History parse(String inpt) throws ParseException{ return new TheParser(new java.io.StringBufferInputStream(inpt)).parse_History(); } public static History parse(java.io.InputStream inpt) throws ParseException{ return new TheParser(inpt).parse_History(); } public static History parse(java.io.Reader inpt) throws ParseException{ return new TheParser(inpt).parse_History(); } public static class rounds extends edu.neu.ccs.demeterf.control.Fields.any{} public String print(){ return new edu.neu.ccs.demeterf.Traversal(new Print()).traverse(this).toString(); } }