// ** 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 ClaimName */ public class ClaimName{ protected final ident v; /** Construct a(n) ClaimName Instance */ public ClaimName(ident v){ this.v = v; } /** Is the given object Equal to this ClaimName? */ public boolean equals(Object o){ if(!(o instanceof ClaimName))return false; if(o == this)return true; ClaimName oo = (ClaimName)o; return (((Object)v).equals(oo.v)); } /** Parse an instance of ClaimName from the given String */ public static ClaimName parse(String inpt) throws gen.ParseException{ return new gen.TheParser(new java.io.StringReader(inpt)).parse_ClaimName(); } /** Parse an instance of ClaimName from the given Stream */ public static ClaimName parse(java.io.InputStream inpt) throws gen.ParseException{ return new gen.TheParser(inpt).parse_ClaimName(); } /** Parse an instance of ClaimName from the given Reader */ public static ClaimName parse(java.io.Reader inpt) throws gen.ParseException{ return new gen.TheParser(inpt).parse_ClaimName(); } /** Field Class for ClaimName.v */ public static class v 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 ClaimName.v */ public ClaimName updateV(ident _v){ return new ClaimName(_v); } /** Getter for field ClaimName.v */ public ident getV(){ return v; } }