// ** This class was generated with DemFGen (vers:11/17/2009)

namespace edu.neu.ccs.demeterf.http.classes{

using edu.neu.ccs.demeterf.lib;
using System.Net.Sockets;
using System.Text;
using System.IO;

using System;



/** Representation of NoURL */
public class NoURL : URL{

    /** Construct a(n) NoURL Instance */
    public NoURL(){
    }
    /** Is the given object Equal to this NoURL? */
    public override bool Equals(Object o){
        if(!(o is 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 new NoURL Parse(String inpt) {
        return new TheParser(new System.IO.StringReader(inpt)).parse_NoURL();
    }
    /** Parse an instance of NoURL from the given Stream */
    public static new NoURL Parse(System.IO.Stream inpt) {
        return new TheParser(inpt).parse_NoURL();
    }
    /** Parse an instance of NoURL from the given Reader */
    public static new NoURL Parse(System.IO.TextReader inpt) {
        return new TheParser(inpt).parse_NoURL();
    }


    /** Is this URL Empty? */
    public bool isEmpty(){ return true; }
    /** Return the URLs Arguments */
    public override Map<String,String> urlArgs(){ return Map<String,String>.create<String>(); }
    /** Remove the URLs Arguments */
    public override String trimArgs(){ return ""; }

    /** DGP method from Class PrintToString */
    public override String ToString(){ return global::edu.neu.ccs.demeterf.http.classes.PrintToString.PrintToStringM(this); }

}
}