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