// ** This class was generated with DemFGen (vers:12/06/2009)

package edu.neu.ccs.demeterf.lexer.classes;

import edu.neu.ccs.demeterf.lib.*;
import edu.neu.ccs.demeterf.*;
import edu.neu.ccs.demeterf.demfgen.classes.*;
import edu.neu.ccs.demeterf.demfgen.classes.Package;




/** Representation of Epsilon */
public class Epsilon extends Label{

    /** Construct a(n) Epsilon Instance */
    public Epsilon(){
    }
    /** Is the given object Equal to this Epsilon? */
    public boolean equals(Object o){
        if(!(o instanceof Epsilon))return false;
        if(o == this)return true;
        Epsilon oo = (Epsilon)o;
        return true;
    }
    /** Parse an instance of Epsilon from the given String */
    public static Epsilon parse(String inpt) throws ParseException{
        return new TheParser(new java.io.StringReader(inpt)).parse_Epsilon();
    }
    /** Parse an instance of Epsilon from the given Stream */
    public static Epsilon parse(java.io.InputStream inpt) throws ParseException{
        return new TheParser(inpt).parse_Epsilon();
    }
    /** Parse an instance of Epsilon from the given Reader */
    public static Epsilon parse(java.io.Reader inpt) throws ParseException{
        return new TheParser(inpt).parse_Epsilon();
    }


        public boolean isEpsilon(){ return true; }

    /** DGP method from Class PrintToString */
    public String toString(){ return edu.neu.ccs.demeterf.lexer.classes.PrintToString.PrintToStringM(this); }

}


