KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hero > historic > ProjectHistoric


1 package hero.historic;
2
3 /**
4 *
5 * Bonita
6 * Copyright (C) 1999 Bull S.A.
7 * Bull 68 route de versailles 78434 Louveciennes Cedex France
8 * Further information: bonita@objectweb.org
9 *
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or any later version.
14 *
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
24 *
25 *
26 --------------------------------------------------------------------------
27 * $Id: ProjectHistoric.java,v 1.1 2004/10/01 15:32:18 mvaldes Exp $
28 *
29 --------------------------------------------------------------------------
30 */

31
32
33 import java.io.Serializable JavaDoc;
34 import java.util.Vector JavaDoc;
35
36 public final class ProjectHistoric implements Serializable JavaDoc, java.lang.Cloneable JavaDoc {
37
38     // --------------------------------------------------- Instance Variables
39

40     private String JavaDoc name="";
41     private String JavaDoc creationDate="";
42     private String JavaDoc endDate="";
43     private String JavaDoc initiator="";
44     private Vector JavaDoc properties;
45     private Vector JavaDoc nodes;
46
47
48     public String JavaDoc getName() {
49         return (name);
50     }
51     
52     public void setName(String JavaDoc name) {
53         this.name = name;
54     }
55     
56     public String JavaDoc getCreationDate() {
57         return (creationDate);
58     }
59     
60     public void setCreationDate(String JavaDoc creationDate) {
61         this.creationDate= creationDate;
62     }
63     
64     public String JavaDoc getEndDate() {
65         return (endDate);
66     }
67     
68     public void setEndDate(String JavaDoc endDate) {
69         this.endDate= endDate;
70     }
71     
72     public String JavaDoc getInitiator() {
73         return (initiator);
74     }
75     
76     public void setInitiator(String JavaDoc initiator) {
77         this.initiator= initiator;
78     }
79     
80     public Vector JavaDoc getProperties() {
81         return (properties);
82     }
83
84     public void setProperties(Vector JavaDoc properties) {
85         this.properties = properties;
86     }
87     
88     public Vector JavaDoc getNodes() {
89         return (nodes);
90     }
91
92     public void setNodes(Vector JavaDoc nodes) {
93         this.nodes = nodes;
94     }
95
96     public ProjectHistoric(){}
97
98     public Object JavaDoc clone() throws java.lang.CloneNotSupportedException JavaDoc{
99     return super.clone();
100     }
101
102 }
103
Popular Tags