// ** This class was generated with DemFGen (vers:02/11/2009) package gen; import edu.neu.ccs.demeterf.demfgen.lib.*; import edu.neu.ccs.demeterf.*; /** Representation of DerivativeName */ public class DerivativeName{ public final ident v; /** Construct a(n) DerivativeName Instance */ public DerivativeName(ident v){ this.v = v; } /** Is the given DerivativeName Equal to this one? */ public boolean equals(Object o){ if(!(o instanceof DerivativeName))return false; DerivativeName oo = (DerivativeName)o; return (((Object)v).equals(oo.v)); } /** Parse an instance of DerivativeName from the given String */ public static DerivativeName parse(String inpt) throws ParseException{ return new TheParser(new java.io.StringReader(inpt)).parse_DerivativeName(); } /** Parse an instance of DerivativeName from the given Stream */ public static DerivativeName parse(java.io.InputStream inpt) throws ParseException{ return new TheParser(inpt).parse_DerivativeName(); } /** Parse an instance of DerivativeName from the given Reader */ public static DerivativeName parse(java.io.Reader inpt) throws ParseException{ return new TheParser(inpt).parse_DerivativeName(); } /** Field Class for DerivativeName.v */ public static class v extends edu.neu.ccs.demeterf.control.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); } }