Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2308 mtayler 1
/*
2
 * Created on 31/03/2005
3
 */
4
package DMS;
5
/**
6
 * @author mtayler
7
 */
8
public class comboDataItem {
9
 
10
	private String FValue;
11
	private String FDescrip;
12
 
13
	public comboDataItem(String value, String descrip) {
14
		FValue=value;
15
		FDescrip=descrip;		
16
	}
17
 
18
	public comboDataItem() {
19
		this("","");
20
	}
21
 
22
	/**
23
	 * @return Returns the fDescrip.
24
	 */
25
	public String getDescrip() {
26
		return FDescrip;
27
	}
28
	/**
29
	 * @param descrip The fDescrip to set.
30
	 */
31
	public void setDescrip(String descrip) {
32
		FDescrip = descrip;
33
	}
34
	/**
35
	 * @return Returns the fValue.
36
	 */
37
	public String getValue() {
38
		return FValue;
39
	}
40
	/**
41
	 * @param value The fValue to set.
42
	 */
43
	public void setValue(String value) {
44
		FValue = value;
45
	}
46
}