b192ad8e1a5a09fc1b211cfe11f64c8423c210ad
[jalview.git] / src / jalview / schemabinding / version2 / descriptors / MappingDescriptor.java
1 /*******************************************************************************
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1)
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.Mapping;
34
35 /**
36  * Class MappingDescriptor.
37  * 
38  * @version $Revision$ $Date$
39  */
40 public class MappingDescriptor extends
41         jalview.schemabinding.version2.descriptors.MapListTypeDescriptor
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 MappingDescriptor()
73   {
74     super();
75     setExtendsWithoutFlatten(new jalview.schemabinding.version2.descriptors.MapListTypeDescriptor());
76     _nsURI = "www.vamsas.ac.uk/jalview/version2";
77     _xmlName = "Mapping";
78     _elementDefinition = true;
79
80     // -- set grouping compositor
81     setCompositorAsChoice();
82     org.exolab.castor.xml.util.XMLFieldDescriptorImpl desc = null;
83     org.exolab.castor.mapping.FieldHandler handler = null;
84     org.exolab.castor.xml.FieldValidator fieldValidator = null;
85     // -- initialize attribute descriptors
86
87     // -- initialize element descriptors
88
89     // -- _mappingChoice
90     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
91             jalview.schemabinding.version2.MappingChoice.class,
92             "_mappingChoice", "-error-if-this-is-used-",
93             org.exolab.castor.xml.NodeType.Element);
94     handler = new org.exolab.castor.xml.XMLFieldHandler()
95     {
96       public java.lang.Object getValue(java.lang.Object object)
97               throws IllegalStateException
98       {
99         Mapping target = (Mapping) object;
100         return target.getMappingChoice();
101       }
102
103       public void setValue(java.lang.Object object, java.lang.Object value)
104               throws IllegalStateException, IllegalArgumentException
105       {
106         try
107         {
108           Mapping target = (Mapping) object;
109           target.setMappingChoice((jalview.schemabinding.version2.MappingChoice) value);
110         } catch (java.lang.Exception ex)
111         {
112           throw new IllegalStateException(ex.toString());
113         }
114       }
115
116       public java.lang.Object newInstance(java.lang.Object parent)
117       {
118         return new jalview.schemabinding.version2.MappingChoice();
119       }
120     };
121     desc.setHandler(handler);
122     desc.setContainer(true);
123     desc.setClassDescriptor(new jalview.schemabinding.version2.descriptors.MappingChoiceDescriptor());
124     desc.setNameSpaceURI("www.vamsas.ac.uk/jalview/version2");
125     desc.setMultivalued(false);
126     addFieldDescriptor(desc);
127
128     // -- validation code for: _mappingChoice
129     fieldValidator = new org.exolab.castor.xml.FieldValidator();
130     { // -- local scope
131     }
132     desc.setValidator(fieldValidator);
133   }
134
135   // -----------/
136   // - Methods -/
137   // -----------/
138
139   /**
140    * Method getAccessMode.
141    * 
142    * @return the access mode specified for this class.
143    */
144   public org.exolab.castor.mapping.AccessMode getAccessMode()
145   {
146     return null;
147   }
148
149   /**
150    * Method getIdentity.
151    * 
152    * @return the identity field, null if this class has no identity.
153    */
154   public org.exolab.castor.mapping.FieldDescriptor getIdentity()
155   {
156     return super.getIdentity();
157   }
158
159   /**
160    * Method getJavaClass.
161    * 
162    * @return the Java class represented by this descriptor.
163    */
164   public java.lang.Class getJavaClass()
165   {
166     return jalview.schemabinding.version2.Mapping.class;
167   }
168
169   /**
170    * Method getNameSpacePrefix.
171    * 
172    * @return the namespace prefix to use when marshaling as XML.
173    */
174   public java.lang.String getNameSpacePrefix()
175   {
176     return _nsPrefix;
177   }
178
179   /**
180    * Method getNameSpaceURI.
181    * 
182    * @return the namespace URI used when marshaling and unmarshaling as XML.
183    */
184   public java.lang.String getNameSpaceURI()
185   {
186     return _nsURI;
187   }
188
189   /**
190    * Method getValidator.
191    * 
192    * @return a specific validator for the class described by this
193    *         ClassDescriptor.
194    */
195   public org.exolab.castor.xml.TypeValidator getValidator()
196   {
197     return this;
198   }
199
200   /**
201    * Method getXMLName.
202    * 
203    * @return the XML Name for the Class being described.
204    */
205   public java.lang.String getXMLName()
206   {
207     return _xmlName;
208   }
209
210   /**
211    * Method isElementDefinition.
212    * 
213    * @return true if XML schema definition of this Class is that of a global
214    *         element or element with anonymous type definition.
215    */
216   public boolean isElementDefinition()
217   {
218     return _elementDefinition;
219   }
220
221 }