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