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