01: /*
02: * Created on Oct 30, 2004
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package org.xdev.base.schema;
08:
09: /**
10: * @author Administrator
11: *
12: * TODO To change the template for this generated type comment go to
13: * Window - Preferences - Java - Code Style - Code Templates
14: */
15: public class SchemaPropertyValue {
16:
17: private String value = null;
18: private String title = null;
19:
20: /**
21: *
22: */
23: public SchemaPropertyValue(String value, String title) {
24: this .value = value;
25: this .title = title;
26: }
27:
28: /**
29: * @return Returns the title.
30: */
31: public String getTitle() {
32: return title;
33: }
34:
35: /**
36: * @param title The title to set.
37: */
38: public void setTitle(String title) {
39: this .title = title;
40: }
41:
42: /**
43: * @return Returns the value.
44: */
45: public String getValue() {
46: return value;
47: }
48:
49: /**
50: * @param value The value to set.
51: */
52: public void setValue(String value) {
53: this.value = value;
54: }
55: }
|