514e2d3899ef83233c967c54aee157b1357ad6c2
[jalview.git] / src / jalview / schemabinding / version2 / descriptors / DBRefDescriptor.java
1 /*******************************************************************************
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1)
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 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.  
17  * If not, see <http://www.gnu.org/licenses/>.
18  * The Jalview Authors are detailed in the 'AUTHORS' file.
19  ******************************************************************************/
20 /*
21  * This class was automatically generated with 
22  * <a href="http://www.castor.org">Castor 1.1</a>, using an XML
23  * Schema.
24  * $Id$
25  */
26
27 package jalview.schemabinding.version2.descriptors;
28
29 //---------------------------------/
30 //- Imported classes and packages -/
31 //---------------------------------/
32
33 import jalview.schemabinding.version2.DBRef;
34
35 /**
36  * Class DBRefDescriptor.
37  * 
38  * @version $Revision$ $Date$
39  */
40 public class DBRefDescriptor extends
41         org.exolab.castor.xml.util.XMLClassDescriptorImpl
42 {
43
44   // --------------------------/
45   // - Class/Member Variables -/
46   // --------------------------/
47
48   /**
49    * Field _elementDefinition.
50    */
51   private boolean _elementDefinition;
52
53   /**
54    * Field _nsPrefix.
55    */
56   private java.lang.String _nsPrefix;
57
58   /**
59    * Field _nsURI.
60    */
61   private java.lang.String _nsURI;
62
63   /**
64    * Field _xmlName.
65    */
66   private java.lang.String _xmlName;
67
68   // ----------------/
69   // - Constructors -/
70   // ----------------/
71
72   public DBRefDescriptor()
73   {
74     super();
75     _nsURI = "www.vamsas.ac.uk/jalview/version2";
76     _xmlName = "DBRef";
77     _elementDefinition = true;
78
79     // -- set grouping compositor
80     setCompositorAsSequence();
81     org.exolab.castor.xml.util.XMLFieldDescriptorImpl desc = null;
82     org.exolab.castor.mapping.FieldHandler handler = null;
83     org.exolab.castor.xml.FieldValidator fieldValidator = null;
84     // -- initialize attribute descriptors
85
86     // -- _source
87     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
88             java.lang.String.class, "_source", "source",
89             org.exolab.castor.xml.NodeType.Attribute);
90     desc.setImmutable(true);
91     handler = new org.exolab.castor.xml.XMLFieldHandler()
92     {
93       public java.lang.Object getValue(java.lang.Object object)
94               throws IllegalStateException
95       {
96         DBRef target = (DBRef) object;
97         return target.getSource();
98       }
99
100       public void setValue(java.lang.Object object, java.lang.Object value)
101               throws IllegalStateException, IllegalArgumentException
102       {
103         try
104         {
105           DBRef target = (DBRef) object;
106           target.setSource((java.lang.String) value);
107         } catch (java.lang.Exception ex)
108         {
109           throw new IllegalStateException(ex.toString());
110         }
111       }
112
113       public java.lang.Object newInstance(java.lang.Object parent)
114       {
115         return null;
116       }
117     };
118     desc.setHandler(handler);
119     desc.setMultivalued(false);
120     addFieldDescriptor(desc);
121
122     // -- validation code for: _source
123     fieldValidator = new org.exolab.castor.xml.FieldValidator();
124     { // -- local scope
125       org.exolab.castor.xml.validators.StringValidator typeValidator;
126       typeValidator = new org.exolab.castor.xml.validators.StringValidator();
127       fieldValidator.setValidator(typeValidator);
128       typeValidator.setWhiteSpace("preserve");
129     }
130     desc.setValidator(fieldValidator);
131     // -- _version
132     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
133             java.lang.String.class, "_version", "version",
134             org.exolab.castor.xml.NodeType.Attribute);
135     desc.setImmutable(true);
136     handler = new org.exolab.castor.xml.XMLFieldHandler()
137     {
138       public java.lang.Object getValue(java.lang.Object object)
139               throws IllegalStateException
140       {
141         DBRef target = (DBRef) object;
142         return target.getVersion();
143       }
144
145       public void setValue(java.lang.Object object, java.lang.Object value)
146               throws IllegalStateException, IllegalArgumentException
147       {
148         try
149         {
150           DBRef target = (DBRef) object;
151           target.setVersion((java.lang.String) value);
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: _version
168     fieldValidator = new org.exolab.castor.xml.FieldValidator();
169     { // -- local scope
170       org.exolab.castor.xml.validators.StringValidator typeValidator;
171       typeValidator = new org.exolab.castor.xml.validators.StringValidator();
172       fieldValidator.setValidator(typeValidator);
173       typeValidator.setWhiteSpace("preserve");
174     }
175     desc.setValidator(fieldValidator);
176     // -- _accessionId
177     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
178             java.lang.String.class, "_accessionId", "accessionId",
179             org.exolab.castor.xml.NodeType.Attribute);
180     desc.setImmutable(true);
181     handler = new org.exolab.castor.xml.XMLFieldHandler()
182     {
183       public java.lang.Object getValue(java.lang.Object object)
184               throws IllegalStateException
185       {
186         DBRef target = (DBRef) object;
187         return target.getAccessionId();
188       }
189
190       public void setValue(java.lang.Object object, java.lang.Object value)
191               throws IllegalStateException, IllegalArgumentException
192       {
193         try
194         {
195           DBRef target = (DBRef) object;
196           target.setAccessionId((java.lang.String) value);
197         } catch (java.lang.Exception ex)
198         {
199           throw new IllegalStateException(ex.toString());
200         }
201       }
202
203       public java.lang.Object newInstance(java.lang.Object parent)
204       {
205         return null;
206       }
207     };
208     desc.setHandler(handler);
209     desc.setMultivalued(false);
210     addFieldDescriptor(desc);
211
212     // -- validation code for: _accessionId
213     fieldValidator = new org.exolab.castor.xml.FieldValidator();
214     { // -- local scope
215       org.exolab.castor.xml.validators.StringValidator typeValidator;
216       typeValidator = new org.exolab.castor.xml.validators.StringValidator();
217       fieldValidator.setValidator(typeValidator);
218       typeValidator.setWhiteSpace("preserve");
219     }
220     desc.setValidator(fieldValidator);
221     // -- initialize element descriptors
222
223     // -- _mapping
224     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
225             jalview.schemabinding.version2.Mapping.class, "_mapping",
226             "Mapping", org.exolab.castor.xml.NodeType.Element);
227     handler = new org.exolab.castor.xml.XMLFieldHandler()
228     {
229       public java.lang.Object getValue(java.lang.Object object)
230               throws IllegalStateException
231       {
232         DBRef target = (DBRef) object;
233         return target.getMapping();
234       }
235
236       public void setValue(java.lang.Object object, java.lang.Object value)
237               throws IllegalStateException, IllegalArgumentException
238       {
239         try
240         {
241           DBRef target = (DBRef) object;
242           target.setMapping((jalview.schemabinding.version2.Mapping) value);
243         } catch (java.lang.Exception ex)
244         {
245           throw new IllegalStateException(ex.toString());
246         }
247       }
248
249       public java.lang.Object newInstance(java.lang.Object parent)
250       {
251         return new jalview.schemabinding.version2.Mapping();
252       }
253     };
254     desc.setHandler(handler);
255     desc.setNameSpaceURI("www.vamsas.ac.uk/jalview/version2");
256     desc.setMultivalued(false);
257     addFieldDescriptor(desc);
258
259     // -- validation code for: _mapping
260     fieldValidator = new org.exolab.castor.xml.FieldValidator();
261     { // -- local scope
262     }
263     desc.setValidator(fieldValidator);
264   }
265
266   // -----------/
267   // - Methods -/
268   // -----------/
269
270   /**
271    * Method getAccessMode.
272    * 
273    * @return the access mode specified for this class.
274    */
275   public org.exolab.castor.mapping.AccessMode getAccessMode()
276   {
277     return null;
278   }
279
280   /**
281    * Method getIdentity.
282    * 
283    * @return the identity field, null if this class has no identity.
284    */
285   public org.exolab.castor.mapping.FieldDescriptor getIdentity()
286   {
287     return super.getIdentity();
288   }
289
290   /**
291    * Method getJavaClass.
292    * 
293    * @return the Java class represented by this descriptor.
294    */
295   public java.lang.Class getJavaClass()
296   {
297     return jalview.schemabinding.version2.DBRef.class;
298   }
299
300   /**
301    * Method getNameSpacePrefix.
302    * 
303    * @return the namespace prefix to use when marshaling as XML.
304    */
305   public java.lang.String getNameSpacePrefix()
306   {
307     return _nsPrefix;
308   }
309
310   /**
311    * Method getNameSpaceURI.
312    * 
313    * @return the namespace URI used when marshaling and unmarshaling as XML.
314    */
315   public java.lang.String getNameSpaceURI()
316   {
317     return _nsURI;
318   }
319
320   /**
321    * Method getValidator.
322    * 
323    * @return a specific validator for the class described by this
324    *         ClassDescriptor.
325    */
326   public org.exolab.castor.xml.TypeValidator getValidator()
327   {
328     return this;
329   }
330
331   /**
332    * Method getXMLName.
333    * 
334    * @return the XML Name for the Class being described.
335    */
336   public java.lang.String getXMLName()
337   {
338     return _xmlName;
339   }
340
341   /**
342    * Method isElementDefinition.
343    * 
344    * @return true if XML schema definition of this Class is that of a global
345    *         element or element with anonymous type definition.
346    */
347   public boolean isElementDefinition()
348   {
349     return _elementDefinition;
350   }
351
352 }