/* * This class was automatically generated with * Castor 0.9.9M2, using an XML * Schema. * $Id$ */ package org.vamsas.objects.core; //---------------------------------/ //- Imported classes and packages -/ //---------------------------------/ import java.io.IOException; import java.io.Reader; import java.io.Serializable; import java.io.Writer; import org.exolab.castor.xml.MarshalException; import org.exolab.castor.xml.Marshaller; import org.exolab.castor.xml.Unmarshaller; import org.exolab.castor.xml.ValidationException; import org.xml.sax.ContentHandler; /** * Class SequenceType. * * @version $Revision$ $Date$ */ public class SequenceType extends org.vamsas.client.object implements java.io.Serializable { //--------------------------/ //- Class/Member Variables -/ //--------------------------/ /** * Field _start */ private int _start; /** * keeps track of state for field: _start */ private boolean _has_start; /** * Field _end */ private int _end; /** * keeps track of state for field: _end */ private boolean _has_end; /** * Field _sequence */ private java.lang.String _sequence; /** * Field _name */ private java.lang.String _name; //----------------/ //- Constructors -/ //----------------/ public SequenceType() { super(); } //-- org.vamsas.objects.core.SequenceType() //-----------/ //- Methods -/ //-----------/ /** * Method deleteEnd * */ public void deleteEnd() { this._has_end= false; } //-- void deleteEnd() /** * Method deleteStart * */ public void deleteStart() { this._has_start= false; } //-- void deleteStart() /** * Note: hashCode() has not been overriden * * @param obj * @return boolean */ public boolean equals(java.lang.Object obj) { if ( this == obj ) return true; if (super.equals(obj)==false) return false; if (obj instanceof SequenceType) { SequenceType temp = (SequenceType)obj; if (this._start != temp._start) return false; if (this._has_start != temp._has_start) return false; if (this._end != temp._end) return false; if (this._has_end != temp._has_end) return false; if (this._sequence != null) { if (temp._sequence == null) return false; else if (!(this._sequence.equals(temp._sequence))) return false; } else if (temp._sequence != null) return false; if (this._name != null) { if (temp._name == null) return false; else if (!(this._name.equals(temp._name))) return false; } else if (temp._name != null) return false; return true; } return false; } //-- boolean equals(java.lang.Object) /** * Returns the value of field 'end'. * * @return int * @return the value of field 'end'. */ public int getEnd() { return this._end; } //-- int getEnd() /** * Returns the value of field 'name'. * * @return String * @return the value of field 'name'. */ public java.lang.String getName() { return this._name; } //-- java.lang.String getName() /** * Returns the value of field 'sequence'. * * @return String * @return the value of field 'sequence'. */ public java.lang.String getSequence() { return this._sequence; } //-- java.lang.String getSequence() /** * Returns the value of field 'start'. * * @return int * @return the value of field 'start'. */ public int getStart() { return this._start; } //-- int getStart() /** * Method hasEnd * * * * @return boolean */ public boolean hasEnd() { return this._has_end; } //-- boolean hasEnd() /** * Method hasStart * * * * @return boolean */ public boolean hasStart() { return this._has_start; } //-- boolean hasStart() /** * 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 'end'. * * @param end the value of field 'end'. */ public void setEnd(int end) { this._end = end; this._has_end = true; } //-- void setEnd(int) /** * Sets the value of field 'name'. * * @param name the value of field 'name'. */ public void setName(java.lang.String name) { this._name = name; } //-- void setName(java.lang.String) /** * Sets the value of field 'sequence'. * * @param sequence the value of field 'sequence'. */ public void setSequence(java.lang.String sequence) { this._sequence = sequence; } //-- void setSequence(java.lang.String) /** * Sets the value of field 'start'. * * @param start the value of field 'start'. */ public void setStart(int start) { this._start = start; this._has_start = true; } //-- void setStart(int) /** * Method unmarshal * * * * @param reader * @return SequenceType */ public static org.vamsas.objects.core.SequenceType unmarshal(java.io.Reader reader) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { return (org.vamsas.objects.core.SequenceType) Unmarshaller.unmarshal(org.vamsas.objects.core.SequenceType.class, reader); } //-- org.vamsas.objects.core.SequenceType 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() }