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