83a5a7c0c21ec5bb32158cde25182a9da5d4a932
[jalview.git] / src / jalview / schemabinding / version2 / SequenceType.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
3  * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
10  *  
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 package jalview.schemabinding.version2;
19
20 //---------------------------------/
21 //- Imported classes and packages -/
22 //---------------------------------/
23
24 import org.exolab.castor.xml.Marshaller;
25 import org.exolab.castor.xml.Unmarshaller;
26
27 /**
28  * Class SequenceType.
29  * 
30  * @version $Revision$ $Date$
31  */
32 public class SequenceType implements java.io.Serializable
33 {
34
35   // --------------------------/
36   // - Class/Member Variables -/
37   // --------------------------/
38
39   /**
40    * Field _id.
41    */
42   private java.lang.String _id;
43
44   /**
45    * Field _description.
46    */
47   private java.lang.String _description;
48
49   /**
50    * Field _sequence.
51    */
52   private java.lang.String _sequence;
53
54   /**
55    * Field _name.
56    */
57   private java.lang.String _name;
58
59   // ----------------/
60   // - Constructors -/
61   // ----------------/
62
63   public SequenceType()
64   {
65     super();
66   }
67
68   // -----------/
69   // - Methods -/
70   // -----------/
71
72   /**
73    * Returns the value of field 'description'.
74    * 
75    * @return the value of field 'Description'.
76    */
77   public java.lang.String getDescription()
78   {
79     return this._description;
80   }
81
82   /**
83    * Returns the value of field 'id'.
84    * 
85    * @return the value of field 'Id'.
86    */
87   public java.lang.String getId()
88   {
89     return this._id;
90   }
91
92   /**
93    * Returns the value of field 'name'.
94    * 
95    * @return the value of field 'Name'.
96    */
97   public java.lang.String getName()
98   {
99     return this._name;
100   }
101
102   /**
103    * Returns the value of field 'sequence'.
104    * 
105    * @return the value of field 'Sequence'.
106    */
107   public java.lang.String getSequence()
108   {
109     return this._sequence;
110   }
111
112   /**
113    * Method isValid.
114    * 
115    * @return true if this object is valid according to the schema
116    */
117   public boolean isValid()
118   {
119     try
120     {
121       validate();
122     } catch (org.exolab.castor.xml.ValidationException vex)
123     {
124       return false;
125     }
126     return true;
127   }
128
129   /**
130    * 
131    * 
132    * @param out
133    * @throws org.exolab.castor.xml.MarshalException
134    *           if object is null or if any SAXException is thrown during
135    *           marshaling
136    * @throws org.exolab.castor.xml.ValidationException
137    *           if this object is an invalid instance according to the schema
138    */
139   public void marshal(final java.io.Writer out)
140           throws org.exolab.castor.xml.MarshalException,
141           org.exolab.castor.xml.ValidationException
142   {
143     Marshaller.marshal(this, out);
144   }
145
146   /**
147    * 
148    * 
149    * @param handler
150    * @throws java.io.IOException
151    *           if an IOException occurs during marshaling
152    * @throws org.exolab.castor.xml.ValidationException
153    *           if this object is an invalid instance according to the schema
154    * @throws org.exolab.castor.xml.MarshalException
155    *           if object is null or if any SAXException is thrown during
156    *           marshaling
157    */
158   public void marshal(final org.xml.sax.ContentHandler handler)
159           throws java.io.IOException,
160           org.exolab.castor.xml.MarshalException,
161           org.exolab.castor.xml.ValidationException
162   {
163     Marshaller.marshal(this, handler);
164   }
165
166   /**
167    * Sets the value of field 'description'.
168    * 
169    * @param description
170    *          the value of field 'description'.
171    */
172   public void setDescription(final java.lang.String description)
173   {
174     this._description = description;
175   }
176
177   /**
178    * Sets the value of field 'id'.
179    * 
180    * @param id
181    *          the value of field 'id'.
182    */
183   public void setId(final java.lang.String id)
184   {
185     this._id = id;
186   }
187
188   /**
189    * Sets the value of field 'name'.
190    * 
191    * @param name
192    *          the value of field 'name'.
193    */
194   public void setName(final java.lang.String name)
195   {
196     this._name = name;
197   }
198
199   /**
200    * Sets the value of field 'sequence'.
201    * 
202    * @param sequence
203    *          the value of field 'sequence'.
204    */
205   public void setSequence(final java.lang.String sequence)
206   {
207     this._sequence = sequence;
208   }
209
210   /**
211    * Method unmarshal.
212    * 
213    * @param reader
214    * @throws org.exolab.castor.xml.MarshalException
215    *           if object is null or if any SAXException is thrown during
216    *           marshaling
217    * @throws org.exolab.castor.xml.ValidationException
218    *           if this object is an invalid instance according to the schema
219    * @return the unmarshaled jalview.schemabinding.version2.SequenceType
220    */
221   public static jalview.schemabinding.version2.SequenceType unmarshal(
222           final java.io.Reader reader)
223           throws org.exolab.castor.xml.MarshalException,
224           org.exolab.castor.xml.ValidationException
225   {
226     return (jalview.schemabinding.version2.SequenceType) Unmarshaller
227             .unmarshal(jalview.schemabinding.version2.SequenceType.class,
228                     reader);
229   }
230
231   /**
232    * 
233    * 
234    * @throws org.exolab.castor.xml.ValidationException
235    *           if this object is an invalid instance according to the schema
236    */
237   public void validate() throws org.exolab.castor.xml.ValidationException
238   {
239     org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();
240     validator.validate(this);
241   }
242
243 }