synchronized with last schema revision.
[vamsas.git] / src / org / vamsas / objects / core / ApplicationData.java
1 /*
2  * This class was automatically generated with 
3  * <a href="http://www.castor.org">Castor 0.9.9M2</a>, using an XML
4  * Schema.
5  * $Id$
6  */
7
8 package org.vamsas.objects.core;
9
10   //---------------------------------/
11  //- Imported classes and packages -/
12 //---------------------------------/
13
14 import java.io.IOException;
15 import java.io.Reader;
16 import java.io.Serializable;
17 import java.io.Writer;
18 import org.exolab.castor.xml.MarshalException;
19 import org.exolab.castor.xml.Marshaller;
20 import org.exolab.castor.xml.Unmarshaller;
21 import org.exolab.castor.xml.ValidationException;
22 import org.xml.sax.ContentHandler;
23
24 /**
25  * Class ApplicationData.
26  * 
27  * @version $Revision$ $Date$
28  */
29 public class ApplicationData extends org.vamsas.objects.core.AppData 
30 implements java.io.Serializable
31 {
32
33
34       //--------------------------/
35      //- Class/Member Variables -/
36     //--------------------------/
37
38     /**
39      * Field _version
40      */
41     private java.lang.String _version;
42
43     /**
44      * Field _name
45      */
46     private java.lang.String _name;
47
48     /**
49      * Field _urn
50      */
51     private java.lang.String _urn;
52
53
54       //----------------/
55      //- Constructors -/
56     //----------------/
57
58     public ApplicationData() 
59      {
60         super();
61     } //-- org.vamsas.objects.core.ApplicationData()
62
63
64       //-----------/
65      //- Methods -/
66     //-----------/
67
68     /**
69      * Note: hashCode() has not been overriden
70      * 
71      * @param obj
72      * @return boolean
73      */
74     public boolean equals(java.lang.Object obj)
75     {
76         if ( this == obj )
77             return true;
78         
79         if (super.equals(obj)==false)
80             return false;
81         
82         if (obj instanceof ApplicationData) {
83         
84             ApplicationData temp = (ApplicationData)obj;
85             if (this._version != null) {
86                 if (temp._version == null) return false;
87                 else if (!(this._version.equals(temp._version))) 
88                     return false;
89             }
90             else if (temp._version != null)
91                 return false;
92             if (this._name != null) {
93                 if (temp._name == null) return false;
94                 else if (!(this._name.equals(temp._name))) 
95                     return false;
96             }
97             else if (temp._name != null)
98                 return false;
99             if (this._urn != null) {
100                 if (temp._urn == null) return false;
101                 else if (!(this._urn.equals(temp._urn))) 
102                     return false;
103             }
104             else if (temp._urn != null)
105                 return false;
106             return true;
107         }
108         return false;
109     } //-- boolean equals(java.lang.Object) 
110
111     /**
112      * Returns the value of field 'name'.
113      * 
114      * @return String
115      * @return the value of field 'name'.
116      */
117     public java.lang.String getName()
118     {
119         return this._name;
120     } //-- java.lang.String getName() 
121
122     /**
123      * Returns the value of field 'urn'.
124      * 
125      * @return String
126      * @return the value of field 'urn'.
127      */
128     public java.lang.String getUrn()
129     {
130         return this._urn;
131     } //-- java.lang.String getUrn() 
132
133     /**
134      * Returns the value of field 'version'.
135      * 
136      * @return String
137      * @return the value of field 'version'.
138      */
139     public java.lang.String getVersion()
140     {
141         return this._version;
142     } //-- java.lang.String getVersion() 
143
144     /**
145      * Method isValid
146      * 
147      * 
148      * 
149      * @return boolean
150      */
151     public boolean isValid()
152     {
153         try {
154             validate();
155         }
156         catch (org.exolab.castor.xml.ValidationException vex) {
157             return false;
158         }
159         return true;
160     } //-- boolean isValid() 
161
162     /**
163      * Method marshal
164      * 
165      * 
166      * 
167      * @param out
168      */
169     public void marshal(java.io.Writer out)
170         throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
171     {
172         
173         Marshaller.marshal(this, out);
174     } //-- void marshal(java.io.Writer) 
175
176     /**
177      * Method marshal
178      * 
179      * 
180      * 
181      * @param handler
182      */
183     public void marshal(org.xml.sax.ContentHandler handler)
184         throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
185     {
186         
187         Marshaller.marshal(this, handler);
188     } //-- void marshal(org.xml.sax.ContentHandler) 
189
190     /**
191      * Sets the value of field 'name'.
192      * 
193      * @param name the value of field 'name'.
194      */
195     public void setName(java.lang.String name)
196     {
197         this._name = name;
198     } //-- void setName(java.lang.String) 
199
200     /**
201      * Sets the value of field 'urn'.
202      * 
203      * @param urn the value of field 'urn'.
204      */
205     public void setUrn(java.lang.String urn)
206     {
207         this._urn = urn;
208     } //-- void setUrn(java.lang.String) 
209
210     /**
211      * Sets the value of field 'version'.
212      * 
213      * @param version the value of field 'version'.
214      */
215     public void setVersion(java.lang.String version)
216     {
217         this._version = version;
218     } //-- void setVersion(java.lang.String) 
219
220     /**
221      * Method unmarshal
222      * 
223      * 
224      * 
225      * @param reader
226      * @return AppData
227      */
228     public static org.vamsas.objects.core.AppData unmarshal(java.io.Reader reader)
229         throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
230     {
231         return (org.vamsas.objects.core.ApplicationData) Unmarshaller.unmarshal(org.vamsas.objects.core.ApplicationData.class, reader);
232     } //-- org.vamsas.objects.core.AppData unmarshal(java.io.Reader) 
233
234     /**
235      * Method validate
236      * 
237      */
238     public void validate()
239         throws org.exolab.castor.xml.ValidationException
240     {
241         org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();
242         validator.validate(this);
243     } //-- void validate() 
244
245 }