// ** This class was generated with DemFGen (vers:11/09/2009) package edu.neu.ccs.demeterf.http.classes; import edu.neu.ccs.demeterf.lib.*; import java.net.Socket; import java.net.InetSocketAddress; import java.net.ServerSocket; import java.io.IOException; import java.io.BufferedReader; import java.io.PrintWriter; import java.io.InputStreamReader; import java.io.InputStream; /** Representation of NoURL */ public class NoURL extends URL{ /** Construct a(n) NoURL Instance */ public NoURL(){ } /** Is the given object Equal to this NoURL? */ public boolean equals(Object o){ if(!(o instanceof NoURL))return false; if(o == this)return true; NoURL oo = (NoURL)o; return true; } /** Parse an instance of NoURL from the given String */ public static NoURL parse(String inpt) throws ParseException{ return new TheParser(new java.io.StringReader(inpt)).parse_NoURL(); } /** Parse an instance of NoURL from the given Stream */ public static NoURL parse(java.io.InputStream inpt) throws ParseException{ return new TheParser(inpt).parse_NoURL(); } /** Parse an instance of NoURL from the given Reader */ public static NoURL parse(java.io.Reader inpt) throws ParseException{ return new TheParser(inpt).parse_NoURL(); } /** Is this URL Empty? */ public boolean isEmpty(){ return true; } /** Return the URLs Arguments */ public Map urlArgs(){ return Map.create(); } /** Remove the URLs Arguments */ public String trimArgs(){ return ""; } /** DGP method from Class PrintHeapToString */ public String toString(){ return edu.neu.ccs.demeterf.http.classes.PrintHeapToString.PrintHeapToStringM(this); } }