View Javadoc
1   /*
2    * This class was automatically generated with 
3    * <a href="http://www.castor.org">Castor 1.3.1</a>, using an XML
4    * Schema.
5    * $Id$
6    */
7   
8   package org.exolab.castor.tests.framework.testDescriptor.descriptors;
9   
10    //---------------------------------/
11   //- Imported classes and packages -/
12  //---------------------------------/
13  
14  import org.exolab.castor.tests.framework.testDescriptor.Configuration;
15  
16  /**
17   * Class ConfigurationDescriptor.
18   * 
19   * @version $Revision$ $Date$
20   */
21  public class ConfigurationDescriptor extends org.exolab.castor.xml.util.XMLClassDescriptorImpl {
22  
23  
24        //--------------------------/
25       //- Class/Member Variables -/
26      //--------------------------/
27  
28      /**
29       * Field _elementDefinition.
30       */
31      private boolean _elementDefinition;
32  
33      /**
34       * Field _nsPrefix.
35       */
36      private java.lang.String _nsPrefix;
37  
38      /**
39       * Field _nsURI.
40       */
41      private java.lang.String _nsURI;
42  
43      /**
44       * Field _xmlName.
45       */
46      private java.lang.String _xmlName;
47  
48      /**
49       * Field _identity.
50       */
51      private org.exolab.castor.xml.XMLFieldDescriptor _identity;
52  
53  
54        //----------------/
55       //- Constructors -/
56      //----------------/
57  
58      public ConfigurationDescriptor() {
59          super();
60          _nsURI = "http://castor.exolab.org/Test";
61          _xmlName = "Configuration";
62          _elementDefinition = true;
63  
64          //-- set grouping compositor
65          setCompositorAsChoice();
66          org.exolab.castor.xml.util.XMLFieldDescriptorImpl  desc           = null;
67          org.exolab.castor.mapping.FieldHandler             handler        = null;
68          org.exolab.castor.xml.FieldValidator               fieldValidator = null;
69          //-- initialize attribute descriptors
70  
71          //-- initialize element descriptors
72  
73          //-- _marshal
74          desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(org.exolab.castor.tests.framework.testDescriptor.Marshal.class, "_marshal", "Marshal", org.exolab.castor.xml.NodeType.Element);
75          handler = new org.exolab.castor.xml.XMLFieldHandler() {
76              public java.lang.Object getValue( java.lang.Object object ) 
77                  throws IllegalStateException
78              {
79                  Configuration target = (Configuration) object;
80                  return target.getMarshal();
81              }
82              public void setValue( java.lang.Object object, java.lang.Object value) 
83                  throws IllegalStateException, IllegalArgumentException
84              {
85                  try {
86                      Configuration target = (Configuration) object;
87                      target.setMarshal( (org.exolab.castor.tests.framework.testDescriptor.Marshal) value);
88                  } catch (java.lang.Exception ex) {
89                      throw new IllegalStateException(ex.toString());
90                  }
91              }
92              public java.lang.Object newInstance(java.lang.Object parent) {
93                  return new org.exolab.castor.tests.framework.testDescriptor.Marshal();
94              }
95          };
96          desc.setSchemaType("org.exolab.castor.tests.framework.testDescriptor.Marshal");
97          desc.setHandler(handler);
98          desc.setNameSpaceURI("http://castor.exolab.org/Test");
99          desc.setRequired(true);
100         desc.setMultivalued(false);
101         addFieldDescriptor(desc);
102         addSequenceElement(desc);
103 
104         //-- validation code for: _marshal
105         fieldValidator = new org.exolab.castor.xml.FieldValidator();
106         fieldValidator.setMinOccurs(1);
107         { //-- local scope
108         }
109         desc.setValidator(fieldValidator);
110         //-- _unmarshal
111         desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(org.exolab.castor.tests.framework.testDescriptor.Unmarshal.class, "_unmarshal", "Unmarshal", org.exolab.castor.xml.NodeType.Element);
112         handler = new org.exolab.castor.xml.XMLFieldHandler() {
113             public java.lang.Object getValue( java.lang.Object object ) 
114                 throws IllegalStateException
115             {
116                 Configuration target = (Configuration) object;
117                 return target.getUnmarshal();
118             }
119             public void setValue( java.lang.Object object, java.lang.Object value) 
120                 throws IllegalStateException, IllegalArgumentException
121             {
122                 try {
123                     Configuration target = (Configuration) object;
124                     target.setUnmarshal( (org.exolab.castor.tests.framework.testDescriptor.Unmarshal) value);
125                 } catch (java.lang.Exception ex) {
126                     throw new IllegalStateException(ex.toString());
127                 }
128             }
129             public java.lang.Object newInstance(java.lang.Object parent) {
130                 return new org.exolab.castor.tests.framework.testDescriptor.Unmarshal();
131             }
132         };
133         desc.setSchemaType("org.exolab.castor.tests.framework.testDescriptor.Unmarshal");
134         desc.setHandler(handler);
135         desc.setNameSpaceURI("http://castor.exolab.org/Test");
136         desc.setRequired(true);
137         desc.setMultivalued(false);
138         addFieldDescriptor(desc);
139         addSequenceElement(desc);
140 
141         //-- validation code for: _unmarshal
142         fieldValidator = new org.exolab.castor.xml.FieldValidator();
143         fieldValidator.setMinOccurs(1);
144         { //-- local scope
145         }
146         desc.setValidator(fieldValidator);
147     }
148 
149 
150       //-----------/
151      //- Methods -/
152     //-----------/
153 
154     /**
155      * Method getAccessMode.
156      * 
157      * @return the access mode specified for this class.
158      */
159     public org.exolab.castor.mapping.AccessMode getAccessMode(
160     ) {
161         return null;
162     }
163 
164     /**
165      * Method getIdentity.
166      * 
167      * @return the identity field, null if this class has no
168      * identity.
169      */
170     public org.exolab.castor.mapping.FieldDescriptor getIdentity(
171     ) {
172         return _identity;
173     }
174 
175     /**
176      * Method getJavaClass.
177      * 
178      * @return the Java class represented by this descriptor.
179      */
180     public java.lang.Class getJavaClass(
181     ) {
182         return org.exolab.castor.tests.framework.testDescriptor.Configuration.class;
183     }
184 
185     /**
186      * Method getNameSpacePrefix.
187      * 
188      * @return the namespace prefix to use when marshaling as XML.
189      */
190     public java.lang.String getNameSpacePrefix(
191     ) {
192         return _nsPrefix;
193     }
194 
195     /**
196      * Method getNameSpaceURI.
197      * 
198      * @return the namespace URI used when marshaling and
199      * unmarshaling as XML.
200      */
201     public java.lang.String getNameSpaceURI(
202     ) {
203         return _nsURI;
204     }
205 
206     /**
207      * Method getValidator.
208      * 
209      * @return a specific validator for the class described by this
210      * ClassDescriptor.
211      */
212     public org.exolab.castor.xml.TypeValidator getValidator(
213     ) {
214         return this;
215     }
216 
217     /**
218      * Method getXMLName.
219      * 
220      * @return the XML Name for the Class being described.
221      */
222     public java.lang.String getXMLName(
223     ) {
224         return _xmlName;
225     }
226 
227     /**
228      * Method isElementDefinition.
229      * 
230      * @return true if XML schema definition of this Class is that
231      * of a global
232      * element or element with anonymous type definition.
233      */
234     public boolean isElementDefinition(
235     ) {
236         return _elementDefinition;
237     }
238 
239 }