JAL-1620 version bump and release notes
[jalview.git] / src / jalview / schemabinding / version2 / descriptors / ThresholdLineDescriptor.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1)
3  * Copyright (C) 2014 The Jalview Authors
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
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.schemabinding.version2.descriptors;
22
23 //---------------------------------/
24 //- Imported classes and packages -/
25 //---------------------------------/
26
27 import jalview.schemabinding.version2.ThresholdLine;
28
29 /**
30  * Class ThresholdLineDescriptor.
31  * 
32  * @version $Revision$ $Date$
33  */
34 public class ThresholdLineDescriptor extends
35         org.exolab.castor.xml.util.XMLClassDescriptorImpl
36 {
37
38   // --------------------------/
39   // - Class/Member Variables -/
40   // --------------------------/
41
42   /**
43    * Field _elementDefinition.
44    */
45   private boolean _elementDefinition;
46
47   /**
48    * Field _nsPrefix.
49    */
50   private java.lang.String _nsPrefix;
51
52   /**
53    * Field _nsURI.
54    */
55   private java.lang.String _nsURI;
56
57   /**
58    * Field _xmlName.
59    */
60   private java.lang.String _xmlName;
61
62   // ----------------/
63   // - Constructors -/
64   // ----------------/
65
66   public ThresholdLineDescriptor()
67   {
68     super();
69     _nsURI = "www.vamsas.ac.uk/jalview/version2";
70     _xmlName = "thresholdLine";
71     _elementDefinition = true;
72     org.exolab.castor.xml.util.XMLFieldDescriptorImpl desc = null;
73     org.exolab.castor.mapping.FieldHandler handler = null;
74     org.exolab.castor.xml.FieldValidator fieldValidator = null;
75     // -- initialize attribute descriptors
76
77     // -- _label
78     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
79             java.lang.String.class, "_label", "label",
80             org.exolab.castor.xml.NodeType.Attribute);
81     desc.setImmutable(true);
82     handler = new org.exolab.castor.xml.XMLFieldHandler()
83     {
84       public java.lang.Object getValue(java.lang.Object object)
85               throws IllegalStateException
86       {
87         ThresholdLine target = (ThresholdLine) object;
88         return target.getLabel();
89       }
90
91       public void setValue(java.lang.Object object, java.lang.Object value)
92               throws IllegalStateException, IllegalArgumentException
93       {
94         try
95         {
96           ThresholdLine target = (ThresholdLine) object;
97           target.setLabel((java.lang.String) value);
98         } catch (java.lang.Exception ex)
99         {
100           throw new IllegalStateException(ex.toString());
101         }
102       }
103
104       public java.lang.Object newInstance(java.lang.Object parent)
105       {
106         return null;
107       }
108     };
109     desc.setHandler(handler);
110     desc.setMultivalued(false);
111     addFieldDescriptor(desc);
112
113     // -- validation code for: _label
114     fieldValidator = new org.exolab.castor.xml.FieldValidator();
115     { // -- local scope
116       org.exolab.castor.xml.validators.StringValidator typeValidator;
117       typeValidator = new org.exolab.castor.xml.validators.StringValidator();
118       fieldValidator.setValidator(typeValidator);
119       typeValidator.setWhiteSpace("preserve");
120     }
121     desc.setValidator(fieldValidator);
122     // -- _value
123     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
124             java.lang.Float.TYPE, "_value", "value",
125             org.exolab.castor.xml.NodeType.Attribute);
126     handler = new org.exolab.castor.xml.XMLFieldHandler()
127     {
128       public java.lang.Object getValue(java.lang.Object object)
129               throws IllegalStateException
130       {
131         ThresholdLine target = (ThresholdLine) object;
132         if (!target.hasValue())
133         {
134           return null;
135         }
136         return new java.lang.Float(target.getValue());
137       }
138
139       public void setValue(java.lang.Object object, java.lang.Object value)
140               throws IllegalStateException, IllegalArgumentException
141       {
142         try
143         {
144           ThresholdLine target = (ThresholdLine) object;
145           // if null, use delete method for optional primitives
146           if (value == null)
147           {
148             target.deleteValue();
149             return;
150           }
151           target.setValue(((java.lang.Float) value).floatValue());
152         } catch (java.lang.Exception ex)
153         {
154           throw new IllegalStateException(ex.toString());
155         }
156       }
157
158       public java.lang.Object newInstance(java.lang.Object parent)
159       {
160         return null;
161       }
162     };
163     desc.setHandler(handler);
164     desc.setMultivalued(false);
165     addFieldDescriptor(desc);
166
167     // -- validation code for: _value
168     fieldValidator = new org.exolab.castor.xml.FieldValidator();
169     { // -- local scope
170       org.exolab.castor.xml.validators.FloatValidator typeValidator;
171       typeValidator = new org.exolab.castor.xml.validators.FloatValidator();
172       fieldValidator.setValidator(typeValidator);
173       typeValidator.setMinInclusive((float) -3.4028235E38);
174       typeValidator.setMaxInclusive((float) 3.4028235E38);
175     }
176     desc.setValidator(fieldValidator);
177     // -- _colour
178     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
179             java.lang.Integer.TYPE, "_colour", "colour",
180             org.exolab.castor.xml.NodeType.Attribute);
181     handler = new org.exolab.castor.xml.XMLFieldHandler()
182     {
183       public java.lang.Object getValue(java.lang.Object object)
184               throws IllegalStateException
185       {
186         ThresholdLine target = (ThresholdLine) object;
187         if (!target.hasColour())
188         {
189           return null;
190         }
191         return new java.lang.Integer(target.getColour());
192       }
193
194       public void setValue(java.lang.Object object, java.lang.Object value)
195               throws IllegalStateException, IllegalArgumentException
196       {
197         try
198         {
199           ThresholdLine target = (ThresholdLine) object;
200           // if null, use delete method for optional primitives
201           if (value == null)
202           {
203             target.deleteColour();
204             return;
205           }
206           target.setColour(((java.lang.Integer) value).intValue());
207         } catch (java.lang.Exception ex)
208         {
209           throw new IllegalStateException(ex.toString());
210         }
211       }
212
213       public java.lang.Object newInstance(java.lang.Object parent)
214       {
215         return null;
216       }
217     };
218     desc.setHandler(handler);
219     desc.setMultivalued(false);
220     addFieldDescriptor(desc);
221
222     // -- validation code for: _colour
223     fieldValidator = new org.exolab.castor.xml.FieldValidator();
224     { // -- local scope
225       org.exolab.castor.xml.validators.IntValidator typeValidator;
226       typeValidator = new org.exolab.castor.xml.validators.IntValidator();
227       fieldValidator.setValidator(typeValidator);
228       typeValidator.setMinInclusive(-2147483648);
229       typeValidator.setMaxInclusive(2147483647);
230     }
231     desc.setValidator(fieldValidator);
232     // -- initialize element descriptors
233
234   }
235
236   // -----------/
237   // - Methods -/
238   // -----------/
239
240   /**
241    * Method getAccessMode.
242    * 
243    * @return the access mode specified for this class.
244    */
245   public org.exolab.castor.mapping.AccessMode getAccessMode()
246   {
247     return null;
248   }
249
250   /**
251    * Method getIdentity.
252    * 
253    * @return the identity field, null if this class has no identity.
254    */
255   public org.exolab.castor.mapping.FieldDescriptor getIdentity()
256   {
257     return super.getIdentity();
258   }
259
260   /**
261    * Method getJavaClass.
262    * 
263    * @return the Java class represented by this descriptor.
264    */
265   public java.lang.Class getJavaClass()
266   {
267     return jalview.schemabinding.version2.ThresholdLine.class;
268   }
269
270   /**
271    * Method getNameSpacePrefix.
272    * 
273    * @return the namespace prefix to use when marshaling as XML.
274    */
275   public java.lang.String getNameSpacePrefix()
276   {
277     return _nsPrefix;
278   }
279
280   /**
281    * Method getNameSpaceURI.
282    * 
283    * @return the namespace URI used when marshaling and unmarshaling as XML.
284    */
285   public java.lang.String getNameSpaceURI()
286   {
287     return _nsURI;
288   }
289
290   /**
291    * Method getValidator.
292    * 
293    * @return a specific validator for the class described by this
294    *         ClassDescriptor.
295    */
296   public org.exolab.castor.xml.TypeValidator getValidator()
297   {
298     return this;
299   }
300
301   /**
302    * Method getXMLName.
303    * 
304    * @return the XML Name for the Class being described.
305    */
306   public java.lang.String getXMLName()
307   {
308     return _xmlName;
309   }
310
311   /**
312    * Method isElementDefinition.
313    * 
314    * @return true if XML schema definition of this Class is that of a global
315    *         element or element with anonymous type definition.
316    */
317   public boolean isElementDefinition()
318   {
319     return _elementDefinition;
320   }
321
322 }