update author list in license for (JAL-826)
[jalview.git] / src / jalview / schemabinding / version2 / descriptors / FeatureSettingsDescriptor.java
1 /*******************************************************************************
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
3  * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, 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 /*
19  * This class was automatically generated with 
20  * <a href="http://www.castor.org">Castor 1.1</a>, using an XML
21  * Schema.
22  * $Id$
23  */
24
25 package jalview.schemabinding.version2.descriptors;
26
27   //---------------------------------/
28  //- Imported classes and packages -/
29 //---------------------------------/
30
31 import jalview.schemabinding.version2.FeatureSettings;
32
33 /**
34  * Class FeatureSettingsDescriptor.
35  * 
36  * @version $Revision$ $Date$
37  */
38 public class FeatureSettingsDescriptor extends org.exolab.castor.xml.util.XMLClassDescriptorImpl {
39
40
41       //--------------------------/
42      //- Class/Member Variables -/
43     //--------------------------/
44
45     /**
46      * Field _elementDefinition.
47      */
48     private boolean _elementDefinition;
49
50     /**
51      * Field _nsPrefix.
52      */
53     private java.lang.String _nsPrefix;
54
55     /**
56      * Field _nsURI.
57      */
58     private java.lang.String _nsURI;
59
60     /**
61      * Field _xmlName.
62      */
63     private java.lang.String _xmlName;
64
65
66       //----------------/
67      //- Constructors -/
68     //----------------/
69
70     public FeatureSettingsDescriptor() {
71         super();
72         _nsURI = "www.jalview.org";
73         _xmlName = "FeatureSettings";
74         _elementDefinition = true;
75         
76         //-- set grouping compositor
77         setCompositorAsSequence();
78         org.exolab.castor.xml.util.XMLFieldDescriptorImpl  desc           = null;
79         org.exolab.castor.mapping.FieldHandler             handler        = null;
80         org.exolab.castor.xml.FieldValidator               fieldValidator = null;
81         //-- initialize attribute descriptors
82         
83         //-- initialize element descriptors
84         
85         //-- _settingList
86         desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(jalview.schemabinding.version2.Setting.class, "_settingList", "setting", org.exolab.castor.xml.NodeType.Element);
87         handler = new org.exolab.castor.xml.XMLFieldHandler() {
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             public void setValue( java.lang.Object object, java.lang.Object value) 
95                 throws IllegalStateException, IllegalArgumentException
96             {
97                 try {
98                     FeatureSettings target = (FeatureSettings) object;
99                     target.addSetting( (jalview.schemabinding.version2.Setting) value);
100                 } catch (java.lang.Exception ex) {
101                     throw new IllegalStateException(ex.toString());
102                 }
103             }
104             public void resetValue(Object object) throws IllegalStateException, IllegalArgumentException {
105                 try {
106                     FeatureSettings target = (FeatureSettings) object;
107                     target.removeAllSetting();
108                 } catch (java.lang.Exception ex) {
109                     throw new IllegalStateException(ex.toString());
110                 }
111             }
112             public java.lang.Object newInstance(java.lang.Object parent) {
113                 return new jalview.schemabinding.version2.Setting();
114             }
115         };
116         desc.setHandler(handler);
117         desc.setNameSpaceURI("www.jalview.org");
118         desc.setMultivalued(true);
119         addFieldDescriptor(desc);
120         
121         //-- validation code for: _settingList
122         fieldValidator = new org.exolab.castor.xml.FieldValidator();
123         fieldValidator.setMinOccurs(0);
124         { //-- local scope
125         }
126         desc.setValidator(fieldValidator);
127         //-- _groupList
128         desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(jalview.schemabinding.version2.Group.class, "_groupList", "group", org.exolab.castor.xml.NodeType.Element);
129         handler = new org.exolab.castor.xml.XMLFieldHandler() {
130             public java.lang.Object getValue( java.lang.Object object ) 
131                 throws IllegalStateException
132             {
133                 FeatureSettings target = (FeatureSettings) object;
134                 return target.getGroup();
135             }
136             public void setValue( java.lang.Object object, java.lang.Object value) 
137                 throws IllegalStateException, IllegalArgumentException
138             {
139                 try {
140                     FeatureSettings target = (FeatureSettings) object;
141                     target.addGroup( (jalview.schemabinding.version2.Group) value);
142                 } catch (java.lang.Exception ex) {
143                     throw new IllegalStateException(ex.toString());
144                 }
145             }
146             public void resetValue(Object object) throws IllegalStateException, IllegalArgumentException {
147                 try {
148                     FeatureSettings target = (FeatureSettings) object;
149                     target.removeAllGroup();
150                 } catch (java.lang.Exception ex) {
151                     throw new IllegalStateException(ex.toString());
152                 }
153             }
154             public java.lang.Object newInstance(java.lang.Object parent) {
155                 return new jalview.schemabinding.version2.Group();
156             }
157         };
158         desc.setHandler(handler);
159         desc.setNameSpaceURI("www.jalview.org");
160         desc.setMultivalued(true);
161         addFieldDescriptor(desc);
162         
163         //-- validation code for: _groupList
164         fieldValidator = new org.exolab.castor.xml.FieldValidator();
165         fieldValidator.setMinOccurs(0);
166         { //-- local scope
167         }
168         desc.setValidator(fieldValidator);
169     }
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
190      * identity.
191      */
192     public org.exolab.castor.mapping.FieldDescriptor getIdentity(
193     ) {
194         return super.getIdentity();
195     }
196
197     /**
198      * Method getJavaClass.
199      * 
200      * @return the Java class represented by this descriptor.
201      */
202     public java.lang.Class getJavaClass(
203     ) {
204         return jalview.schemabinding.version2.FeatureSettings.class;
205     }
206
207     /**
208      * Method getNameSpacePrefix.
209      * 
210      * @return the namespace prefix to use when marshaling as XML.
211      */
212     public java.lang.String getNameSpacePrefix(
213     ) {
214         return _nsPrefix;
215     }
216
217     /**
218      * Method getNameSpaceURI.
219      * 
220      * @return the namespace URI used when marshaling and
221      * 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
253      * of a global
254      * element or element with anonymous type definition.
255      */
256     public boolean isElementDefinition(
257     ) {
258         return _elementDefinition;
259     }
260
261 }