JAL-1503 update version in GPL header
[jalview.git] / src / jalview / schemabinding / version2 / descriptors / FeatureSettingsDescriptor.java
1 /*******************************************************************************
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.1)
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.FeatureSettings;
34
35 /**
36  * Class FeatureSettingsDescriptor.
37  * 
38  * @version $Revision$ $Date$
39  */
40 public class FeatureSettingsDescriptor 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 FeatureSettingsDescriptor()
73   {
74     super();
75     _nsURI = "www.jalview.org";
76     _xmlName = "FeatureSettings";
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     // -- initialize element descriptors
87
88     // -- _settingList
89     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
90             jalview.schemabinding.version2.Setting.class, "_settingList",
91             "setting", org.exolab.castor.xml.NodeType.Element);
92     handler = new org.exolab.castor.xml.XMLFieldHandler()
93     {
94       public java.lang.Object getValue(java.lang.Object object)
95               throws IllegalStateException
96       {
97         FeatureSettings target = (FeatureSettings) object;
98         return target.getSetting();
99       }
100
101       public void setValue(java.lang.Object object, java.lang.Object value)
102               throws IllegalStateException, IllegalArgumentException
103       {
104         try
105         {
106           FeatureSettings target = (FeatureSettings) object;
107           target.addSetting((jalview.schemabinding.version2.Setting) value);
108         } catch (java.lang.Exception ex)
109         {
110           throw new IllegalStateException(ex.toString());
111         }
112       }
113
114       public void resetValue(Object object) throws IllegalStateException,
115               IllegalArgumentException
116       {
117         try
118         {
119           FeatureSettings target = (FeatureSettings) object;
120           target.removeAllSetting();
121         } catch (java.lang.Exception ex)
122         {
123           throw new IllegalStateException(ex.toString());
124         }
125       }
126
127       public java.lang.Object newInstance(java.lang.Object parent)
128       {
129         return new jalview.schemabinding.version2.Setting();
130       }
131     };
132     desc.setHandler(handler);
133     desc.setNameSpaceURI("www.jalview.org");
134     desc.setMultivalued(true);
135     addFieldDescriptor(desc);
136
137     // -- validation code for: _settingList
138     fieldValidator = new org.exolab.castor.xml.FieldValidator();
139     fieldValidator.setMinOccurs(0);
140     { // -- local scope
141     }
142     desc.setValidator(fieldValidator);
143     // -- _groupList
144     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
145             jalview.schemabinding.version2.Group.class, "_groupList",
146             "group", org.exolab.castor.xml.NodeType.Element);
147     handler = new org.exolab.castor.xml.XMLFieldHandler()
148     {
149       public java.lang.Object getValue(java.lang.Object object)
150               throws IllegalStateException
151       {
152         FeatureSettings target = (FeatureSettings) object;
153         return target.getGroup();
154       }
155
156       public void setValue(java.lang.Object object, java.lang.Object value)
157               throws IllegalStateException, IllegalArgumentException
158       {
159         try
160         {
161           FeatureSettings target = (FeatureSettings) object;
162           target.addGroup((jalview.schemabinding.version2.Group) value);
163         } catch (java.lang.Exception ex)
164         {
165           throw new IllegalStateException(ex.toString());
166         }
167       }
168
169       public void resetValue(Object object) throws IllegalStateException,
170               IllegalArgumentException
171       {
172         try
173         {
174           FeatureSettings target = (FeatureSettings) object;
175           target.removeAllGroup();
176         } catch (java.lang.Exception ex)
177         {
178           throw new IllegalStateException(ex.toString());
179         }
180       }
181
182       public java.lang.Object newInstance(java.lang.Object parent)
183       {
184         return new jalview.schemabinding.version2.Group();
185       }
186     };
187     desc.setHandler(handler);
188     desc.setNameSpaceURI("www.jalview.org");
189     desc.setMultivalued(true);
190     addFieldDescriptor(desc);
191
192     // -- validation code for: _groupList
193     fieldValidator = new org.exolab.castor.xml.FieldValidator();
194     fieldValidator.setMinOccurs(0);
195     { // -- local scope
196     }
197     desc.setValidator(fieldValidator);
198   }
199
200   // -----------/
201   // - Methods -/
202   // -----------/
203
204   /**
205    * Method getAccessMode.
206    * 
207    * @return the access mode specified for this class.
208    */
209   public org.exolab.castor.mapping.AccessMode getAccessMode()
210   {
211     return null;
212   }
213
214   /**
215    * Method getIdentity.
216    * 
217    * @return the identity field, null if this class has no identity.
218    */
219   public org.exolab.castor.mapping.FieldDescriptor getIdentity()
220   {
221     return super.getIdentity();
222   }
223
224   /**
225    * Method getJavaClass.
226    * 
227    * @return the Java class represented by this descriptor.
228    */
229   public java.lang.Class getJavaClass()
230   {
231     return jalview.schemabinding.version2.FeatureSettings.class;
232   }
233
234   /**
235    * Method getNameSpacePrefix.
236    * 
237    * @return the namespace prefix to use when marshaling as XML.
238    */
239   public java.lang.String getNameSpacePrefix()
240   {
241     return _nsPrefix;
242   }
243
244   /**
245    * Method getNameSpaceURI.
246    * 
247    * @return the namespace URI used when marshaling and unmarshaling as XML.
248    */
249   public java.lang.String getNameSpaceURI()
250   {
251     return _nsURI;
252   }
253
254   /**
255    * Method getValidator.
256    * 
257    * @return a specific validator for the class described by this
258    *         ClassDescriptor.
259    */
260   public org.exolab.castor.xml.TypeValidator getValidator()
261   {
262     return this;
263   }
264
265   /**
266    * Method getXMLName.
267    * 
268    * @return the XML Name for the Class being described.
269    */
270   public java.lang.String getXMLName()
271   {
272     return _xmlName;
273   }
274
275   /**
276    * Method isElementDefinition.
277    * 
278    * @return true if XML schema definition of this Class is that of a global
279    *         element or element with anonymous type definition.
280    */
281   public boolean isElementDefinition()
282   {
283     return _elementDefinition;
284   }
285
286 }