// ** This file was generated with DemFGen (vers:12/15/2010) package gen; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.*; import java.lang.Integer; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.*; import java.lang.Integer; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.*; import java.lang.Integer; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.*; import java.lang.Integer; /** Representation of StrengthenReply */ public class StrengthenReply extends OpposeOrAgreeReply{ protected final Claim c; /** Construct a(n) StrengthenReply Instance */ public StrengthenReply(Claim c){ this.c = c; } /** Is the given object Equal to this StrengthenReply? */ public boolean equals(Object o){ if(!(o instanceof StrengthenReply))return false; if(o == this)return true; StrengthenReply oo = (StrengthenReply)o; return (((Object)c).equals(oo.c)); } /** Parse an instance of StrengthenReply from the given String */ public static StrengthenReply parse(String inpt) throws gen.ParseException{ return new gen.TheParser(new java.io.StringReader(inpt)).parse_StrengthenReply(); } /** Parse an instance of StrengthenReply from the given Stream */ public static StrengthenReply parse(java.io.InputStream inpt) throws gen.ParseException{ return new gen.TheParser(inpt).parse_StrengthenReply(); } /** Parse an instance of StrengthenReply from the given Reader */ public static StrengthenReply parse(java.io.Reader inpt) throws gen.ParseException{ return new gen.TheParser(inpt).parse_StrengthenReply(); } /** Field Class for StrengthenReply.c */ public static class c extends edu.neu.ccs.demeterf.Fields.any{} /** DGP method from Class Display */ public String display(){ return gen.Display.DisplayM(this); } /** DGP method from Class Print */ public String print(){ return gen.Print.PrintM(this); } /** DGP method from Class ToStr */ public String toStr(){ return gen.ToStr.ToStrM(this); } /** Updater for field StrengthenReply.c */ public StrengthenReply updateC(Claim _c){ return new StrengthenReply(_c); } /** Getter for field StrengthenReply.c */ public Claim getC(){ return c; } }