/* * This class was automatically generated with * Castor 0.9.6, using an XML * Schema. * $Id$ */ package jalview.schemabinding.version2; //---------------------------------/ //- Imported classes and packages -/ //---------------------------------/ import org.exolab.castor.xml.*; /** * Class OtherData. * * @version $Revision$ $Date$ */ public class OtherData implements java.io.Serializable { //--------------------------/ //- Class/Member Variables -/ //--------------------------/ /** * Field _key */ private java.lang.String _key; /** * Field _value */ private java.lang.String _value; //----------------/ //- Constructors -/ //----------------/ public OtherData() { super(); } //-- jalview.schemabinding.version2.OtherData() //-----------/ //- Methods -/ //-----------/ /** * Returns the value of field 'key'. * * @return String * @return the value of field 'key'. */ public java.lang.String getKey() { return this._key; } //-- java.lang.String getKey() /** * Returns the value of field 'value'. * * @return String * @return the value of field 'value'. */ public java.lang.String getValue() { return this._value; } //-- java.lang.String getValue() /** * Method isValid * * * * @return boolean */ public boolean isValid() { try { validate(); } catch (org.exolab.castor.xml.ValidationException vex) { return false; } return true; } //-- boolean isValid() /** * Method marshal * * * * @param out */ public void marshal(java.io.Writer out) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { Marshaller.marshal(this, out); } //-- void marshal(java.io.Writer) /** * Method marshal * * * * @param handler */ public void marshal(org.xml.sax.ContentHandler handler) throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { Marshaller.marshal(this, handler); } //-- void marshal(org.xml.sax.ContentHandler) /** * Sets the value of field 'key'. * * @param key the value of field 'key'. */ public void setKey(java.lang.String key) { this._key = key; } //-- void setKey(java.lang.String) /** * Sets the value of field 'value'. * * @param value the value of field 'value'. */ public void setValue(java.lang.String value) { this._value = value; } //-- void setValue(java.lang.String) /** * Method unmarshal * * * * @param reader * @return Object */ public static java.lang.Object unmarshal(java.io.Reader reader) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { return (jalview.schemabinding.version2.OtherData) Unmarshaller.unmarshal( jalview.schemabinding.version2.OtherData.class, reader); } //-- java.lang.Object unmarshal(java.io.Reader) /** * Method validate * */ public void validate() throws org.exolab.castor.xml.ValidationException { org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml. Validator(); validator.validate(this); } //-- void validate() }