01: /*
02: * Created on Mar 6, 2003
03: *
04: * Dbmjui is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU General Public License version 2 as
06: * published by the Free Software Foundation.
07: *
08: * Dbmjui is distributed in the hope that it will be useful,
09: * but WITHOUT ANY WARRANTY; without even the implied warranty of
10: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11: * General Public License for more details.
12: *
13: * You should have received a copy of the GNU General Public
14: * License along with dbmjui; see the file COPYING. If not,
15: * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16: * Boston, MA 02111-1307, USA.
17: *
18: */
19: package fr.aliacom.dbmjui.beans;
20:
21: import java.io.Serializable;
22:
23: /**
24: * A line in the version informations table
25: *
26: * @author tom
27: *
28: * (c) 2001, 2003 Thomas Cataldo
29: */
30: public final class VersionInfoEntry implements Serializable {
31:
32: private String name;
33: private String value;
34:
35: /**
36: * @param name
37: * @param value
38: */
39: public VersionInfoEntry(String name, String value) {
40: this .name = name;
41: this .value = value;
42: }
43:
44: /**
45: * @return String
46: */
47: public String getName() {
48: return name;
49: }
50:
51: /**
52: * Sets the name.
53: * @param name The name to set
54: */
55: public void setName(String name) {
56: this .name = name;
57: }
58:
59: /**
60: * @return String
61: */
62: public String getValue() {
63: return value;
64: }
65:
66: /**
67: * Sets the value.
68: * @param value The value to set
69: */
70: public void setValue(String value) {
71: this.value = value;
72: }
73:
74: }
|