2b0f3605ebb8bacc989e070232451c2bf0cdde80
[jalview.git] / src / jalview / schemabinding / version2 / descriptors / PdbidsDescriptor.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.Pdbids;
34
35 /**
36  * Class PdbidsDescriptor.
37  * 
38  * @version $Revision$ $Date$
39  */
40 public class PdbidsDescriptor extends
41         jalview.schemabinding.version2.descriptors.PdbentryDescriptor
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 PdbidsDescriptor()
73   {
74     super();
75     setExtendsWithoutFlatten(new jalview.schemabinding.version2.descriptors.PdbentryDescriptor());
76     _nsURI = "www.jalview.org";
77     _xmlName = "pdbids";
78     _elementDefinition = true;
79
80     // -- set grouping compositor
81     setCompositorAsSequence();
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     // -- _structureStateList
90     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
91             jalview.schemabinding.version2.StructureState.class,
92             "_structureStateList", "structureState",
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         Pdbids target = (Pdbids) object;
100         return target.getStructureState();
101       }
102
103       public void setValue(java.lang.Object object, java.lang.Object value)
104               throws IllegalStateException, IllegalArgumentException
105       {
106         try
107         {
108           Pdbids target = (Pdbids) object;
109           target.addStructureState((jalview.schemabinding.version2.StructureState) value);
110         } catch (java.lang.Exception ex)
111         {
112           throw new IllegalStateException(ex.toString());
113         }
114       }
115
116       public void resetValue(Object object) throws IllegalStateException,
117               IllegalArgumentException
118       {
119         try
120         {
121           Pdbids target = (Pdbids) object;
122           target.removeAllStructureState();
123         } catch (java.lang.Exception ex)
124         {
125           throw new IllegalStateException(ex.toString());
126         }
127       }
128
129       public java.lang.Object newInstance(java.lang.Object parent)
130       {
131         return new jalview.schemabinding.version2.StructureState();
132       }
133     };
134     desc.setHandler(handler);
135     desc.setNameSpaceURI("www.jalview.org");
136     desc.setMultivalued(true);
137     addFieldDescriptor(desc);
138
139     // -- validation code for: _structureStateList
140     fieldValidator = new org.exolab.castor.xml.FieldValidator();
141     fieldValidator.setMinOccurs(0);
142     { // -- local scope
143     }
144     desc.setValidator(fieldValidator);
145   }
146
147   // -----------/
148   // - Methods -/
149   // -----------/
150
151   /**
152    * Method getAccessMode.
153    * 
154    * @return the access mode specified for this class.
155    */
156   public org.exolab.castor.mapping.AccessMode getAccessMode()
157   {
158     return null;
159   }
160
161   /**
162    * Method getIdentity.
163    * 
164    * @return the identity field, null if this class has no identity.
165    */
166   public org.exolab.castor.mapping.FieldDescriptor getIdentity()
167   {
168     return super.getIdentity();
169   }
170
171   /**
172    * Method getJavaClass.
173    * 
174    * @return the Java class represented by this descriptor.
175    */
176   public java.lang.Class getJavaClass()
177   {
178     return jalview.schemabinding.version2.Pdbids.class;
179   }
180
181   /**
182    * Method getNameSpacePrefix.
183    * 
184    * @return the namespace prefix to use when marshaling as XML.
185    */
186   public java.lang.String getNameSpacePrefix()
187   {
188     return _nsPrefix;
189   }
190
191   /**
192    * Method getNameSpaceURI.
193    * 
194    * @return the namespace URI used when marshaling and unmarshaling as XML.
195    */
196   public java.lang.String getNameSpaceURI()
197   {
198     return _nsURI;
199   }
200
201   /**
202    * Method getValidator.
203    * 
204    * @return a specific validator for the class described by this
205    *         ClassDescriptor.
206    */
207   public org.exolab.castor.xml.TypeValidator getValidator()
208   {
209     return this;
210   }
211
212   /**
213    * Method getXMLName.
214    * 
215    * @return the XML Name for the Class being described.
216    */
217   public java.lang.String getXMLName()
218   {
219     return _xmlName;
220   }
221
222   /**
223    * Method isElementDefinition.
224    * 
225    * @return true if XML schema definition of this Class is that of a global
226    *         element or element with anonymous type definition.
227    */
228   public boolean isElementDefinition()
229   {
230     return _elementDefinition;
231   }
232
233 }