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.ReusableMetaModelComponent;
7
 
8
/**
9
 * 
10
 * @author naveen
11
 *
12
 */
13
public class FeatureDefinition extends ReusableMetaModelComponent {
14
	/**
15
	 * 
16
	 */
17
	private static final long serialVersionUID = 1L;
18
	private String label;
19
	private String description;
20
	private boolean allowsBlank;
21
	private long bulletDefinitionID;
22
 
23
	/**
24
	 * 
25
	 * @param newID
26
	 */
27
	public FeatureDefinition(long newID) {
28
		super(newID);
29
	}
30
 
31
	/**
32
	 * 
33
	 * @return label
34
	 */
35
	public String getLabel() {
36
		return this.label;
37
	}
38
 
39
	/**
40
	 * 
41
	 * @param value
42
	 */
43
	public void setLabel(String value) {
44
		this.label = value;
45
	}
46
 
47
	/**
48
	 * 
49
	 * @return description
50
	 */
51
	public String getDescription() {
52
		return this.description;
53
	}
54
 
55
	/**
56
	 * 
57
	 * @param value
58
	 */
59
	public void setDescription(String value) {
60
		this.description = value;
61
	}
62
 
63
	/**
64
	 * 
65
	 * @param value
66
	 */
67
	public void setAllowsBlank(boolean value) {
68
		this.allowsBlank = value;
69
	}
70
 
71
	/**
72
	 * 
73
	 * @return boolean
74
	 */
75
	public boolean allowsBlank() {
76
		return this.allowsBlank;
77
	}
78
 
79
	/**
80
	 * @param bulletDefinitionID the bulletDefinitionID to set
81
	 */
82
	public void setBulletDefinitionID(long bulletDefinitionID) {
83
		this.bulletDefinitionID = bulletDefinitionID;
84
	}
85
 
86
	/**
87
	 * @return the bulletDefinitionID
88
	 */
89
	public long getBulletDefinitionID() {
90
		return bulletDefinitionID;
91
	}
92
 
93
}