// ** This file was generated with DemFGen (vers:4/15/2011) package nwf; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.lib.*; import scg.*; import edu.neu.ccs.demeterf.lib.*; import edu.neu.ccs.demeterf.*; import java.util.Iterator; /** Representation of NWFDomain */ public class NWFDomain implements DomainI{ /** Construct a(n) NWFDomain Instance */ public NWFDomain(){ } /** Is the given object Equal to this NWFDomain? */ public boolean equals(Object o){ if(!(o instanceof NWFDomain))return false; if(o == this)return true; NWFDomain oo = (NWFDomain)o; return true; } /** Parse an instance of NWFDomain from the given String */ public static NWFDomain parse(String inpt) throws nwf.ParseException{ return new nwf.TheParser(new java.io.StringReader(inpt)).parse_NWFDomain(); } /** Parse an instance of NWFDomain from the given Stream */ public static NWFDomain parse(java.io.InputStream inpt) throws nwf.ParseException{ return new nwf.TheParser(inpt).parse_NWFDomain(); } /** Parse an instance of NWFDomain from the given Reader */ public static NWFDomain parse(java.io.Reader inpt) throws nwf.ParseException{ return new nwf.TheParser(inpt).parse_NWFDomain(); } /** DGP method from Class Display */ public String display(){ return nwf.Display.DisplayM(this); } /** DGP method from Class Print */ public String print(){ return nwf.Print.PrintM(this); } /** DGP method from Class ToStr */ public String toStr(){ return nwf.ToStr.ToStrM(this); } /** DGP method from Class PrintToString */ public String toString(){ return nwf.PrintToString.PrintToStringM(this); } /** DGP method from Class HashCode */ public int hashCode(){ return nwf.HashCode.HashCodeM(this); } }