X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fbinding%2FFeatureMatcherSet.java;fp=src%2Fjalview%2Fbinding%2FFeatureMatcherSet.java;h=0000000000000000000000000000000000000000;hb=4d64932654de3f6ffe07db11d18f2d21f558c6e6;hp=7ba5f0e95cad2e62d9bb3d72e2f2467dc2c43154;hpb=382f5ff058a4c2fed1e9874bb712b40f16ec1a4e;p=jalview.git diff --git a/src/jalview/binding/FeatureMatcherSet.java b/src/jalview/binding/FeatureMatcherSet.java deleted file mode 100644 index 7ba5f0e..0000000 --- a/src/jalview/binding/FeatureMatcherSet.java +++ /dev/null @@ -1,200 +0,0 @@ -/* - * This class was automatically generated with - * Castor 1.1, using an XML - * Schema. - * $Id$ - */ - -package jalview.binding; - -//---------------------------------/ -//- 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 jalview.binding.MatchCondition _matchCondition; - - /** - * Field _compoundMatcher. - */ - private jalview.binding.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 jalview.binding.CompoundMatcher getCompoundMatcher() - { - return this._compoundMatcher; - } - - /** - * Returns the value of field 'matchCondition'. - * - * @return the value of field 'MatchCondition'. - */ - public jalview.binding.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 jalview.binding.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 jalview.binding.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.binding.FeatureMatcherSet - */ - public static jalview.binding.FeatureMatcherSet unmarshal( - final java.io.Reader reader) - throws org.exolab.castor.xml.MarshalException, - org.exolab.castor.xml.ValidationException - { - return (jalview.binding.FeatureMatcherSet) Unmarshaller - .unmarshal(jalview.binding.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); - } - -}