/* * 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 java.util.Enumeration; import java.util.Vector; 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.Vobject 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; /** * Field _description */ private java.lang.String _description; /** * additional typed properties * */ private java.util.Vector _propertyList; //----------------/ //- Constructors -/ //----------------/ public SequenceType() { super(); _propertyList = new Vector(); } //-- org.vamsas.objects.core.SequenceType() //-----------/ //- Methods -/ //-----------/ /** * Method addProperty * * * * @param vProperty */ public void addProperty(org.vamsas.objects.core.Property vProperty) throws java.lang.IndexOutOfBoundsException { _propertyList.addElement(vProperty); } //-- void addProperty(org.vamsas.objects.core.Property) /** * Method addProperty * * * * @param index * @param vProperty */ public void addProperty(int index, org.vamsas.objects.core.Property vProperty) throws java.lang.IndexOutOfBoundsException { _propertyList.insertElementAt(vProperty, index); } //-- void addProperty(int, org.vamsas.objects.core.Property) /** * Method deleteEnd * */ public void deleteEnd() { this._has_end= false; } //-- void deleteEnd() /** * Method deleteStart * */ public void deleteStart() { this._has_start= false; } //-- void deleteStart() /** * Method enumerateProperty * * * * @return Enumeration */ public java.util.Enumeration enumerateProperty() { return _propertyList.elements(); } //-- java.util.Enumeration enumerateProperty() /** * 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; if (this._description != null) { if (temp._description == null) return false; else if (!(this._description.equals(temp._description))) return false; } else if (temp._description != null) return false; if (this._propertyList != null) { if (temp._propertyList == null) return false; else if (!(this._propertyList.equals(temp._propertyList))) return false; } else if (temp._propertyList != null) return false; return true; } return false; } //-- boolean equals(java.lang.Object) /** * Returns the value of field 'description'. * * @return String * @return the value of field 'description'. */ public java.lang.String getDescription() { return this._description; } //-- java.lang.String getDescription() /** * 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() /** * Method getProperty * * * * @param index * @return Property */ public org.vamsas.objects.core.Property getProperty(int index) throws java.lang.IndexOutOfBoundsException { //-- check bounds for index if ((index < 0) || (index > _propertyList.size())) { throw new IndexOutOfBoundsException("getProperty: Index value '"+index+"' not in range [0.."+_propertyList.size()+ "]"); } return (org.vamsas.objects.core.Property) _propertyList.elementAt(index); } //-- org.vamsas.objects.core.Property getProperty(int) /** * Method getProperty * * * * @return Property */ public org.vamsas.objects.core.Property[] getProperty() { int size = _propertyList.size(); org.vamsas.objects.core.Property[] mArray = new org.vamsas.objects.core.Property[size]; for (int index = 0; index < size; index++) { mArray[index] = (org.vamsas.objects.core.Property) _propertyList.elementAt(index); } return mArray; } //-- org.vamsas.objects.core.Property[] getProperty() /** * Method getPropertyCount * * * * @return int */ public int getPropertyCount() { return _propertyList.size(); } //-- int getPropertyCount() /** * 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) /** * Method removeAllProperty * */ public void removeAllProperty() { _propertyList.removeAllElements(); } //-- void removeAllProperty() /** * Method removeProperty * * * * @param index * @return Property */ public org.vamsas.objects.core.Property removeProperty(int index) { java.lang.Object obj = _propertyList.elementAt(index); _propertyList.removeElementAt(index); return (org.vamsas.objects.core.Property) obj; } //-- org.vamsas.objects.core.Property removeProperty(int) /** * Sets the value of field 'description'. * * @param description the value of field 'description'. */ public void setDescription(java.lang.String description) { this._description = description; } //-- void setDescription(java.lang.String) /** * 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) /** * Method setProperty * * * * @param index * @param vProperty */ public void setProperty(int index, org.vamsas.objects.core.Property vProperty) throws java.lang.IndexOutOfBoundsException { //-- check bounds for index if ((index < 0) || (index > _propertyList.size())) { throw new IndexOutOfBoundsException("setProperty: Index value '"+index+"' not in range [0.."+_propertyList.size()+ "]"); } _propertyList.setElementAt(vProperty, index); } //-- void setProperty(int, org.vamsas.objects.core.Property) /** * Method setProperty * * * * @param propertyArray */ public void setProperty(org.vamsas.objects.core.Property[] propertyArray) { //-- copy array _propertyList.removeAllElements(); for (int i = 0; i < propertyArray.length; i++) { _propertyList.addElement(propertyArray[i]); } } //-- void setProperty(org.vamsas.objects.core.Property) /** * 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() }