Optional instead of min/max
[vamsas.git] / src / org / vamsas / objects / core / ProvenanceItem.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.Serializable;
15 import org.exolab.castor.xml.Marshaller;
16 import org.exolab.castor.xml.Unmarshaller;
17
18 /**
19  * Class ProvenanceItem.
20  * 
21  * @version $Revision$ $Date$
22  */
23 public class ProvenanceItem implements java.io.Serializable {
24
25
26       //--------------------------/
27      //- Class/Member Variables -/
28     //--------------------------/
29
30     /**
31      * Field _entry
32      */
33     private org.vamsas.objects.core.Entry _entry;
34
35
36       //----------------/
37      //- Constructors -/
38     //----------------/
39
40     public ProvenanceItem() 
41      {
42         super();
43     } //-- org.vamsas.objects.core.ProvenanceItem()
44
45
46       //-----------/
47      //- Methods -/
48     //-----------/
49
50     /**
51      * Returns the value of field 'entry'.
52      * 
53      * @return Entry
54      * @return the value of field 'entry'.
55      */
56     public org.vamsas.objects.core.Entry getEntry()
57     {
58         return this._entry;
59     } //-- org.vamsas.objects.core.Entry getEntry() 
60
61     /**
62      * Sets the value of field 'entry'.
63      * 
64      * @param entry the value of field 'entry'.
65      */
66     public void setEntry(org.vamsas.objects.core.Entry entry)
67     {
68         this._entry = entry;
69     } //-- void setEntry(org.vamsas.objects.core.Entry) 
70
71 }