JAL-1432 updated copyright notices
[jalview.git] / src / jalview / schemabinding / version2 / descriptors / AlcodMapDescriptor.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.  If not, see <http://www.gnu.org/licenses/>.
17  * The Jalview Authors are detailed in the 'AUTHORS' file.
18  */
19 package jalview.schemabinding.version2.descriptors;
20
21 //---------------------------------/
22 //- Imported classes and packages -/
23 //---------------------------------/
24
25 import jalview.schemabinding.version2.AlcodMap;
26
27 /**
28  * Class AlcodMapDescriptor.
29  * 
30  * @version $Revision$ $Date$
31  */
32 public class AlcodMapDescriptor extends
33         org.exolab.castor.xml.util.XMLClassDescriptorImpl
34 {
35
36   // --------------------------/
37   // - Class/Member Variables -/
38   // --------------------------/
39
40   /**
41    * Field _elementDefinition.
42    */
43   private boolean _elementDefinition;
44
45   /**
46    * Field _nsPrefix.
47    */
48   private java.lang.String _nsPrefix;
49
50   /**
51    * Field _nsURI.
52    */
53   private java.lang.String _nsURI;
54
55   /**
56    * Field _xmlName.
57    */
58   private java.lang.String _xmlName;
59
60   // ----------------/
61   // - Constructors -/
62   // ----------------/
63
64   public AlcodMapDescriptor()
65   {
66     super();
67     _nsURI = "www.vamsas.ac.uk/jalview/version2";
68     _xmlName = "alcodMap";
69     _elementDefinition = true;
70
71     // -- set grouping compositor
72     setCompositorAsSequence();
73     org.exolab.castor.xml.util.XMLFieldDescriptorImpl desc = null;
74     org.exolab.castor.mapping.FieldHandler handler = null;
75     org.exolab.castor.xml.FieldValidator fieldValidator = null;
76     // -- initialize attribute descriptors
77
78     // -- _dnasq
79     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
80             java.lang.String.class, "_dnasq", "dnasq",
81             org.exolab.castor.xml.NodeType.Attribute);
82     desc.setImmutable(true);
83     handler = new org.exolab.castor.xml.XMLFieldHandler()
84     {
85       public java.lang.Object getValue(java.lang.Object object)
86               throws IllegalStateException
87       {
88         AlcodMap target = (AlcodMap) object;
89         return target.getDnasq();
90       }
91
92       public void setValue(java.lang.Object object, java.lang.Object value)
93               throws IllegalStateException, IllegalArgumentException
94       {
95         try
96         {
97           AlcodMap target = (AlcodMap) object;
98           target.setDnasq((java.lang.String) value);
99         } catch (java.lang.Exception ex)
100         {
101           throw new IllegalStateException(ex.toString());
102         }
103       }
104
105       public java.lang.Object newInstance(java.lang.Object parent)
106       {
107         return null;
108       }
109     };
110     desc.setHandler(handler);
111     desc.setRequired(true);
112     desc.setMultivalued(false);
113     addFieldDescriptor(desc);
114
115     // -- validation code for: _dnasq
116     fieldValidator = new org.exolab.castor.xml.FieldValidator();
117     fieldValidator.setMinOccurs(1);
118     { // -- local scope
119       org.exolab.castor.xml.validators.StringValidator typeValidator;
120       typeValidator = new org.exolab.castor.xml.validators.StringValidator();
121       fieldValidator.setValidator(typeValidator);
122       typeValidator.setWhiteSpace("preserve");
123     }
124     desc.setValidator(fieldValidator);
125     // -- initialize element descriptors
126
127     // -- _mapping
128     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
129             jalview.schemabinding.version2.Mapping.class, "_mapping",
130             "Mapping", org.exolab.castor.xml.NodeType.Element);
131     handler = new org.exolab.castor.xml.XMLFieldHandler()
132     {
133       public java.lang.Object getValue(java.lang.Object object)
134               throws IllegalStateException
135       {
136         AlcodMap target = (AlcodMap) object;
137         return target.getMapping();
138       }
139
140       public void setValue(java.lang.Object object, java.lang.Object value)
141               throws IllegalStateException, IllegalArgumentException
142       {
143         try
144         {
145           AlcodMap target = (AlcodMap) object;
146           target.setMapping((jalview.schemabinding.version2.Mapping) value);
147         } catch (java.lang.Exception ex)
148         {
149           throw new IllegalStateException(ex.toString());
150         }
151       }
152
153       public java.lang.Object newInstance(java.lang.Object parent)
154       {
155         return new jalview.schemabinding.version2.Mapping();
156       }
157     };
158     desc.setHandler(handler);
159     desc.setNameSpaceURI("www.vamsas.ac.uk/jalview/version2");
160     desc.setRequired(true);
161     desc.setMultivalued(false);
162     addFieldDescriptor(desc);
163
164     // -- validation code for: _mapping
165     fieldValidator = new org.exolab.castor.xml.FieldValidator();
166     fieldValidator.setMinOccurs(1);
167     { // -- local scope
168     }
169     desc.setValidator(fieldValidator);
170   }
171
172   // -----------/
173   // - Methods -/
174   // -----------/
175
176   /**
177    * Method getAccessMode.
178    * 
179    * @return the access mode specified for this class.
180    */
181   public org.exolab.castor.mapping.AccessMode getAccessMode()
182   {
183     return null;
184   }
185
186   /**
187    * Method getIdentity.
188    * 
189    * @return the identity field, null if this class has no identity.
190    */
191   public org.exolab.castor.mapping.FieldDescriptor getIdentity()
192   {
193     return super.getIdentity();
194   }
195
196   /**
197    * Method getJavaClass.
198    * 
199    * @return the Java class represented by this descriptor.
200    */
201   public java.lang.Class getJavaClass()
202   {
203     return jalview.schemabinding.version2.AlcodMap.class;
204   }
205
206   /**
207    * Method getNameSpacePrefix.
208    * 
209    * @return the namespace prefix to use when marshaling as XML.
210    */
211   public java.lang.String getNameSpacePrefix()
212   {
213     return _nsPrefix;
214   }
215
216   /**
217    * Method getNameSpaceURI.
218    * 
219    * @return the namespace URI used when marshaling and unmarshaling as XML.
220    */
221   public java.lang.String getNameSpaceURI()
222   {
223     return _nsURI;
224   }
225
226   /**
227    * Method getValidator.
228    * 
229    * @return a specific validator for the class described by this
230    *         ClassDescriptor.
231    */
232   public org.exolab.castor.xml.TypeValidator getValidator()
233   {
234     return this;
235   }
236
237   /**
238    * Method getXMLName.
239    * 
240    * @return the XML Name for the Class being described.
241    */
242   public java.lang.String getXMLName()
243   {
244     return _xmlName;
245   }
246
247   /**
248    * Method isElementDefinition.
249    * 
250    * @return true if XML schema definition of this Class is that of a global
251    *         element or element with anonymous type definition.
252    */
253   public boolean isElementDefinition()
254   {
255     return _elementDefinition;
256   }
257
258 }