// ** 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 Label */ public abstract class Label{ /** Construct a(n) Label Instance */ public Label(){ } /** Parse an instance of Label from the given String */ public static Label parse(String inpt) throws ParseException{ return new TheParser(new java.io.StringReader(inpt)).parse_Label(); } /** Parse an instance of Label from the given Stream */ public static Label parse(java.io.InputStream inpt) throws ParseException{ return new TheParser(inpt).parse_Label(); } /** Parse an instance of Label from the given Reader */ public static Label parse(java.io.Reader inpt) throws ParseException{ return new TheParser(inpt).parse_Label(); } public boolean isEpsilon(){ return false; } public boolean contains(char c){ return false; } /** DGP method from Class PrintToString */ public String toString(){ return edu.neu.ccs.demeterf.lexer.classes.PrintToString.PrintToStringM(this); } }