// ** This file was generated with DemFGen (vers:12/15/2010) package scg; import edu.neu.ccs.demeterf.lib.*; import java.lang.reflect.*; /** Representation of OpposeAction */ public abstract class OpposeAction{ /** Construct a(n) OpposeAction Instance */ public OpposeAction(){ } /** Parse an instance of OpposeAction from the given String */ public static OpposeAction parse(String inpt) throws scg.ParseException{ return new scg.TheParser(new java.io.StringReader(inpt)).parse_OpposeAction(); } /** Parse an instance of OpposeAction from the given Stream */ public static OpposeAction parse(java.io.InputStream inpt) throws scg.ParseException{ return new scg.TheParser(inpt).parse_OpposeAction(); } /** Parse an instance of OpposeAction from the given Reader */ public static OpposeAction parse(java.io.Reader inpt) throws scg.ParseException{ return new scg.TheParser(inpt).parse_OpposeAction(); } /** DGP method from Class Print */ public String print(){ return scg.Print.PrintM(this); } }