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

package gen;

import java.io.FileInputStream;
import edu.neu.ccs.demeterf.lib.*;




/** Representation of Create */
public class Create extends TransactionType{

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


    /** DGP method from Class ToStr */
    public String toStr(){ return gen.ToStr.ToStrM(this); }
    /** DGP method from Class Print */
    public String print(){ return gen.Print.PrintM(this); }
    /** DGP method from Class Display */
    public String display(){ return gen.Display.DisplayM(this); }

}