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
 * 
10
 * @author naveen
11
 *
12
 */
13
public class SlideFeatureDefinition extends MetaModelComponent {
14
	/**
15
	 * 
16
	 */
17
	private static final long serialVersionUID = 1L;
18
	private String description;
16 naveen 19
	private long featureDefintionID;
10 shop2020 20
	private EditorialImportance editorialImportance;
21
 
22
	/**
23
	 * 
24
	 * @param slideDefinitionID
25
	 * @param featureDefintionID
26
	 */
16 naveen 27
	public SlideFeatureDefinition(long featureDefintionID) {
10 shop2020 28
		this.featureDefintionID = featureDefintionID;
29
	}
30
 
31
	/**
32
	 * 
33
	 * @return description
34
	 */
35
	public String getDescription() {
36
		return this.description;
37
	}
38
 
39
	/**
40
	 * 
41
	 * @param value
42
	 */
43
	public void setDescription(String value) {
44
		this.description = value;
45
	}
46
 
47
	/**
48
	 * 
49
	 * @return featureDefintionID
50
	 */
16 naveen 51
	public long getFeatureDefintionID() {
10 shop2020 52
		return this.featureDefintionID;
53
	}
54
 
55
	/**
56
	 * 
57
	 * @return editorialImportance
58
	 */
59
	public EditorialImportance getEditorialImportance() {
60
		return this.editorialImportance;
61
	}
62
 
63
	/**
64
	 * 
65
	 * @param value
66
	 */
67
	public void setEditorialImportance(EditorialImportance value) {
68
		this.editorialImportance = value;
69
	}
16 naveen 70
 
71
	/* (non-Javadoc)
72
	 * @see java.lang.Object#toString()
73
	 */
74
	@Override
75
	public String toString() {
76
		return "SlideFeatureDefinition [description=" + description
77
				+ ", editorialImportance=" + editorialImportance
78
				+ ", featureDefintionID=" + featureDefintionID + "]";
79
	}
80
 
10 shop2020 81
}