001: package hero.historic;
002:
003: /**
004: *
005: * Bonita
006: * Copyright (C) 1999 Bull S.A.
007: * Bull 68 route de versailles 78434 Louveciennes Cedex France
008: * Further information: bonita@objectweb.org
009: *
010: * This library is free software; you can redistribute it and/or
011: * modify it under the terms of the GNU Lesser General Public
012: * License as published by the Free Software Foundation; either
013: * version 2.1 of the License, or any later version.
014: *
015: * This library is distributed in the hope that it will be useful,
016: * but WITHOUT ANY WARRANTY; without even the implied warranty of
017: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
018: * Lesser General Public License for more details.
019: *
020: * You should have received a copy of the GNU Lesser General Public
021: * License along with this library; if not, write to the Free Software
022: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
023: * USA
024: *
025: *
026: --------------------------------------------------------------------------
027: * $Id: ProjectHistoric.java,v 1.2 2006/07/26 13:36:41 mvaldes Exp $
028: *
029: --------------------------------------------------------------------------
030: */
031:
032: import java.io.Serializable;
033: import java.util.Vector;
034:
035: public final class ProjectHistoric implements Serializable,
036: java.lang.Cloneable {
037:
038: // --------------------------------------------------- Instance Variables
039:
040: private String name = "";
041: private String version = "";
042: private String creationDate = "";
043: private String endDate = "";
044: private String initiator = "";
045: private Vector properties;
046: private Vector nodes;
047:
048: public String getName() {
049: return (name);
050: }
051:
052: public void setName(String name) {
053: this .name = name;
054: }
055:
056: public String getVersion() {
057: return (version);
058: }
059:
060: public void setVersion(String version) {
061: this .version = version;
062: }
063:
064: public String getCreationDate() {
065: return (creationDate);
066: }
067:
068: public void setCreationDate(String creationDate) {
069: this .creationDate = creationDate;
070: }
071:
072: public String getEndDate() {
073: return (endDate);
074: }
075:
076: public void setEndDate(String endDate) {
077: this .endDate = endDate;
078: }
079:
080: public String getInitiator() {
081: return (initiator);
082: }
083:
084: public void setInitiator(String initiator) {
085: this .initiator = initiator;
086: }
087:
088: public Vector getProperties() {
089: return (properties);
090: }
091:
092: public void setProperties(Vector properties) {
093: this .properties = properties;
094: }
095:
096: public Vector getNodes() {
097: return (nodes);
098: }
099:
100: public void setNodes(Vector nodes) {
101: this .nodes = nodes;
102: }
103:
104: public ProjectHistoric() {
105: }
106:
107: public Object clone() throws java.lang.CloneNotSupportedException {
108: return super.clone();
109: }
110:
111: }
|