// ** This file was generated with DemFGen (vers:4/12/2011) package gen; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.*; /** Representation of EdgeFlow */ public class EdgeFlow{ protected final int v; /** Construct a(n) EdgeFlow Instance */ public EdgeFlow(int v){ this.v = v; } /** Is the given object Equal to this EdgeFlow? */ public boolean equals(Object o){ if(!(o instanceof EdgeFlow))return false; if(o == this)return true; EdgeFlow oo = (EdgeFlow)o; return (((Object)v).equals(oo.v)); } /** Parse an instance of EdgeFlow from the given String */ public static EdgeFlow parse(String inpt) throws gen.ParseException{ return new gen.TheParser(new java.io.StringReader(inpt)).parse_EdgeFlow(); } /** Parse an instance of EdgeFlow from the given Stream */ public static EdgeFlow parse(java.io.InputStream inpt) throws gen.ParseException{ return new gen.TheParser(inpt).parse_EdgeFlow(); } /** Parse an instance of EdgeFlow from the given Reader */ public static EdgeFlow parse(java.io.Reader inpt) throws gen.ParseException{ return new gen.TheParser(inpt).parse_EdgeFlow(); } /** Field Class for EdgeFlow.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 EdgeFlow.v */ public EdgeFlow updateV(int _v){ return new EdgeFlow(_v); } /** Getter for field EdgeFlow.v */ public int getV(){ return v; } }