Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
10 shop2020 1
/**
2
 * 
3
 */
4
package in.shop2020.metamodel.definitions;
5
 
6
import in.shop2020.metamodel.util.MetaModelComponent;
7
 
8
/**
9
 * @author naveen
10
 *
11
 */
12
public class EnumValue extends MetaModelComponent {
13
 
14
	/**
15
	 * 
16
	 */
17
	private static final long serialVersionUID = 1L;
18
	private long id;
19
	private String value;
20
 
21
	/**
22
	 * 
23
	 */
24
	public EnumValue() {
25
		// TODO Auto-generated constructor stub
26
	}
27
 
28
	/**
29
	 * @param id the id to set
30
	 */
31
	public void setId(long id) {
32
		this.id = id;
33
	}
34
 
35
	/**
36
	 * @return the id
37
	 */
38
	public long getId() {
39
		return id;
40
	}
41
 
42
	/**
43
	 * @param value the value to set
44
	 */
45
	public void setValue(String value) {
46
		this.value = value;
47
	}
48
 
49
	/**
50
	 * @return the value
51
	 */
52
	public String getValue() {
53
		return value;
54
	}
55
 
56
}