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