/* * This class was automatically generated with * Castor 1.1, using an XML * Schema. * $Id$ */ package jalview.schemabinding.version2; //---------------------------------/ //- Imported classes and packages -/ //---------------------------------/ import org.exolab.castor.xml.Marshaller; import org.exolab.castor.xml.Unmarshaller; /** * A feature match condition, which may be simple or compound * * @version $Revision$ $Date$ */ public class FeatureMatcherSet implements java.io.Serializable { // --------------------------/ // - Class/Member Variables -/ // --------------------------/ /** * Internal choice value storage */ private java.lang.Object _choiceValue; /** * Field _matchCondition. */ private MatchCondition _matchCondition; /** * Field _compoundMatcher. */ private CompoundMatcher _compoundMatcher; // ----------------/ // - Constructors -/ // ----------------/ public FeatureMatcherSet() { super(); } // -----------/ // - Methods -/ // -----------/ /** * Returns the value of field 'choiceValue'. The field 'choiceValue' has the * following description: Internal choice value storage * * @return the value of field 'ChoiceValue'. */ public java.lang.Object getChoiceValue() { return this._choiceValue; } /** * Returns the value of field 'compoundMatcher'. * * @return the value of field 'CompoundMatcher'. */ public CompoundMatcher getCompoundMatcher() { return this._compoundMatcher; } /** * Returns the value of field 'matchCondition'. * * @return the value of field 'MatchCondition'. */ public MatchCondition getMatchCondition() { return this._matchCondition; } /** * Method isValid. * * @return true if this object is valid according to the schema */ public boolean isValid() { try { validate(); } catch (org.exolab.castor.xml.ValidationException vex) { return false; } return true; } /** * * * @param out * @throws org.exolab.castor.xml.MarshalException * if object is null or if any SAXException is thrown during * marshaling * @throws org.exolab.castor.xml.ValidationException * if this object is an invalid instance according to the schema */ public void marshal(final java.io.Writer out) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { Marshaller.marshal(this, out); } /** * * * @param handler * @throws java.io.IOException * if an IOException occurs during marshaling * @throws org.exolab.castor.xml.ValidationException * if this object is an invalid instance according to the schema * @throws org.exolab.castor.xml.MarshalException * if object is null or if any SAXException is thrown during * marshaling */ public void marshal(final org.xml.sax.ContentHandler handler) throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { Marshaller.marshal(this, handler); } /** * Sets the value of field 'compoundMatcher'. * * @param compoundMatcher * the value of field 'compoundMatcher'. */ public void setCompoundMatcher(final CompoundMatcher compoundMatcher) { this._compoundMatcher = compoundMatcher; this._choiceValue = compoundMatcher; } /** * Sets the value of field 'matchCondition'. * * @param matchCondition * the value of field 'matchCondition'. */ public void setMatchCondition(final MatchCondition matchCondition) { this._matchCondition = matchCondition; this._choiceValue = matchCondition; } /** * Method unmarshal. * * @param reader * @throws org.exolab.castor.xml.MarshalException * if object is null or if any SAXException is thrown during * marshaling * @throws org.exolab.castor.xml.ValidationException * if this object is an invalid instance according to the schema * @return the unmarshaled jalview.schemabinding.version2.FeatureMatcherSet */ public static jalview.schemabinding.version2.FeatureMatcherSet unmarshal( final java.io.Reader reader) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { return (jalview.schemabinding.version2.FeatureMatcherSet) Unmarshaller .unmarshal( jalview.schemabinding.version2.FeatureMatcherSet.class, reader); } /** * * * @throws org.exolab.castor.xml.ValidationException * if this object is an invalid instance according to the schema */ public void validate() throws org.exolab.castor.xml.ValidationException { org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator(); validator.validate(this); } }