1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package nl.toolforge.karma.core.boot;
20
21 /***
22 * Class representation of a <code><property></code>-element in the configuration file for a
23 * {@link WorkingContext}.
24 *
25 * @author D.A. Smedes
26 * @version $Id: Property.java,v 1.2 2004/10/26 22:47:54 hippe Exp $
27 */
28 public class Property {
29
30 private String name = null;
31 private String value = null;
32
33 public Property() {
34
35 }
36
37 public Property(String name, String value) {
38 setName(name);
39 setValue(value);
40 }
41
42 public String getName() {
43 return name;
44 }
45
46 public void setName(String name) {
47 this.name = name;
48 }
49
50 public String getValue() {
51 return value;
52 }
53
54 public void setValue(String value) {
55 this.value = value;
56 }
57 }