// ** This file was generated with DemFGen (vers:12/15/2010) package gen; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.*; /** Representation of CompoundClaim */ public abstract class CompoundClaim extends Claim{ /** Construct a(n) CompoundClaim Instance */ public CompoundClaim(Option args){ super(args); } /** Parse an instance of CompoundClaim from the given String */ public static CompoundClaim parse(String inpt) throws gen.ParseException{ return new gen.TheParser(new java.io.StringReader(inpt)).parse_CompoundClaim(); } /** Parse an instance of CompoundClaim from the given Stream */ public static CompoundClaim parse(java.io.InputStream inpt) throws gen.ParseException{ return new gen.TheParser(inpt).parse_CompoundClaim(); } /** Parse an instance of CompoundClaim from the given Reader */ public static CompoundClaim parse(java.io.Reader inpt) throws gen.ParseException{ return new gen.TheParser(inpt).parse_CompoundClaim(); } /** 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); } /** Abstract updater for field CompoundClaim.args */ public abstract CompoundClaim updateArgs(Option _args); /** Getter for field CompoundClaim.args */ public abstract Option getArgs(); }