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