4595408edc8e19d0ef8195e0932aa45a2b71c26b
[jalview.git] / src / jalview / schemabinding / version2 / descriptors / OtherDataDescriptor.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
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.OtherData;
28
29 /**
30  * Class OtherDataDescriptor.
31  * 
32  * @version $Revision$ $Date$
33  */
34 public class OtherDataDescriptor 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 OtherDataDescriptor()
67   {
68     super();
69     _nsURI = "www.jalview.org";
70     _xmlName = "otherData";
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     // -- _key
78     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
79             java.lang.String.class, "_key", "key",
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         OtherData target = (OtherData) object;
88         return target.getKey();
89       }
90
91       public void setValue(java.lang.Object object, java.lang.Object value)
92               throws IllegalStateException, IllegalArgumentException
93       {
94         try
95         {
96           OtherData target = (OtherData) object;
97           target.setKey((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.setRequired(true);
111     desc.setMultivalued(false);
112     addFieldDescriptor(desc);
113
114     // -- validation code for: _key
115     fieldValidator = new org.exolab.castor.xml.FieldValidator();
116     fieldValidator.setMinOccurs(1);
117     { // -- local scope
118       org.exolab.castor.xml.validators.StringValidator typeValidator;
119       typeValidator = new org.exolab.castor.xml.validators.StringValidator();
120       fieldValidator.setValidator(typeValidator);
121       typeValidator.setWhiteSpace("preserve");
122     }
123     desc.setValidator(fieldValidator);
124     // -- _value
125     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
126             java.lang.String.class, "_value", "value",
127             org.exolab.castor.xml.NodeType.Attribute);
128     desc.setImmutable(true);
129     handler = new org.exolab.castor.xml.XMLFieldHandler()
130     {
131       public java.lang.Object getValue(java.lang.Object object)
132               throws IllegalStateException
133       {
134         OtherData target = (OtherData) object;
135         return target.getValue();
136       }
137
138       public void setValue(java.lang.Object object, java.lang.Object value)
139               throws IllegalStateException, IllegalArgumentException
140       {
141         try
142         {
143           OtherData target = (OtherData) object;
144           target.setValue((java.lang.String) value);
145         } catch (java.lang.Exception ex)
146         {
147           throw new IllegalStateException(ex.toString());
148         }
149       }
150
151       public java.lang.Object newInstance(java.lang.Object parent)
152       {
153         return null;
154       }
155     };
156     desc.setHandler(handler);
157     desc.setRequired(true);
158     desc.setMultivalued(false);
159     addFieldDescriptor(desc);
160
161     // -- validation code for: _value
162     fieldValidator = new org.exolab.castor.xml.FieldValidator();
163     fieldValidator.setMinOccurs(1);
164     { // -- local scope
165       org.exolab.castor.xml.validators.StringValidator typeValidator;
166       typeValidator = new org.exolab.castor.xml.validators.StringValidator();
167       fieldValidator.setValidator(typeValidator);
168       typeValidator.setWhiteSpace("preserve");
169     }
170     desc.setValidator(fieldValidator);
171     // -- initialize element descriptors
172
173   }
174
175   // -----------/
176   // - Methods -/
177   // -----------/
178
179   /**
180    * Method getAccessMode.
181    * 
182    * @return the access mode specified for this class.
183    */
184   public org.exolab.castor.mapping.AccessMode getAccessMode()
185   {
186     return null;
187   }
188
189   /**
190    * Method getIdentity.
191    * 
192    * @return the identity field, null if this class has no identity.
193    */
194   public org.exolab.castor.mapping.FieldDescriptor getIdentity()
195   {
196     return super.getIdentity();
197   }
198
199   /**
200    * Method getJavaClass.
201    * 
202    * @return the Java class represented by this descriptor.
203    */
204   public java.lang.Class getJavaClass()
205   {
206     return jalview.schemabinding.version2.OtherData.class;
207   }
208
209   /**
210    * Method getNameSpacePrefix.
211    * 
212    * @return the namespace prefix to use when marshaling as XML.
213    */
214   public java.lang.String getNameSpacePrefix()
215   {
216     return _nsPrefix;
217   }
218
219   /**
220    * Method getNameSpaceURI.
221    * 
222    * @return the namespace URI used when marshaling and unmarshaling as XML.
223    */
224   public java.lang.String getNameSpaceURI()
225   {
226     return _nsURI;
227   }
228
229   /**
230    * Method getValidator.
231    * 
232    * @return a specific validator for the class described by this
233    *         ClassDescriptor.
234    */
235   public org.exolab.castor.xml.TypeValidator getValidator()
236   {
237     return this;
238   }
239
240   /**
241    * Method getXMLName.
242    * 
243    * @return the XML Name for the Class being described.
244    */
245   public java.lang.String getXMLName()
246   {
247     return _xmlName;
248   }
249
250   /**
251    * Method isElementDefinition.
252    * 
253    * @return true if XML schema definition of this Class is that of a global
254    *         element or element with anonymous type definition.
255    */
256   public boolean isElementDefinition()
257   {
258     return _elementDefinition;
259   }
260
261 }