JAL-1503 update version in GPL header
[jalview.git] / src / jalview / schemabinding / version2 / descriptors / PdbentryItemDescriptor.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.PdbentryItem;
34
35 /**
36  * Class PdbentryItemDescriptor.
37  * 
38  * @version $Revision$ $Date$
39  */
40 public class PdbentryItemDescriptor 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 PdbentryItemDescriptor()
73   {
74     super();
75     _nsURI = "www.jalview.org";
76     _xmlName = "pdbentry";
77     _elementDefinition = false;
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     // -- _propertyList
89     desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(
90             jalview.schemabinding.version2.Property.class, "_propertyList",
91             "property", 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         PdbentryItem target = (PdbentryItem) object;
98         return target.getProperty();
99       }
100
101       public void setValue(java.lang.Object object, java.lang.Object value)
102               throws IllegalStateException, IllegalArgumentException
103       {
104         try
105         {
106           PdbentryItem target = (PdbentryItem) object;
107           target.addProperty((jalview.schemabinding.version2.Property) 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           PdbentryItem target = (PdbentryItem) object;
120           target.removeAllProperty();
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.Property();
130       }
131     };
132     desc.setHandler(handler);
133     desc.setNameSpaceURI("www.jalview.org");
134     desc.setMultivalued(true);
135     addFieldDescriptor(desc);
136
137     // -- validation code for: _propertyList
138     fieldValidator = new org.exolab.castor.xml.FieldValidator();
139     fieldValidator.setMinOccurs(0);
140     { // -- local scope
141     }
142     desc.setValidator(fieldValidator);
143   }
144
145   // -----------/
146   // - Methods -/
147   // -----------/
148
149   /**
150    * Method getAccessMode.
151    * 
152    * @return the access mode specified for this class.
153    */
154   public org.exolab.castor.mapping.AccessMode getAccessMode()
155   {
156     return null;
157   }
158
159   /**
160    * Method getIdentity.
161    * 
162    * @return the identity field, null if this class has no identity.
163    */
164   public org.exolab.castor.mapping.FieldDescriptor getIdentity()
165   {
166     return super.getIdentity();
167   }
168
169   /**
170    * Method getJavaClass.
171    * 
172    * @return the Java class represented by this descriptor.
173    */
174   public java.lang.Class getJavaClass()
175   {
176     return jalview.schemabinding.version2.PdbentryItem.class;
177   }
178
179   /**
180    * Method getNameSpacePrefix.
181    * 
182    * @return the namespace prefix to use when marshaling as XML.
183    */
184   public java.lang.String getNameSpacePrefix()
185   {
186     return _nsPrefix;
187   }
188
189   /**
190    * Method getNameSpaceURI.
191    * 
192    * @return the namespace URI used when marshaling and unmarshaling as XML.
193    */
194   public java.lang.String getNameSpaceURI()
195   {
196     return _nsURI;
197   }
198
199   /**
200    * Method getValidator.
201    * 
202    * @return a specific validator for the class described by this
203    *         ClassDescriptor.
204    */
205   public org.exolab.castor.xml.TypeValidator getValidator()
206   {
207     return this;
208   }
209
210   /**
211    * Method getXMLName.
212    * 
213    * @return the XML Name for the Class being described.
214    */
215   public java.lang.String getXMLName()
216   {
217     return _xmlName;
218   }
219
220   /**
221    * Method isElementDefinition.
222    * 
223    * @return true if XML schema definition of this Class is that of a global
224    *         element or element with anonymous type definition.
225    */
226   public boolean isElementDefinition()
227   {
228     return _elementDefinition;
229   }
230
231 }