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 CompositePartDefinition extends MetaModelComponent {
13
 
14
	/**
15
	 * 
16
	 */
17
	private static final long serialVersionUID = 1L;
18
	private String label;
19
	private String description;
20
	private long datatypeDefinitionID;
21
 
22
	/**
23
	 * 
24
	 */
25
	public CompositePartDefinition() {
26
		// TODO Auto-generated constructor stub
27
	}
28
 
29
	/**
30
	 * @param label the label to set
31
	 */
32
	public void setLabel(String label) {
33
		this.label = label;
34
	}
35
 
36
	/**
37
	 * @return the label
38
	 */
39
	public String getLabel() {
40
		return label;
41
	}
42
 
43
	/**
44
	 * @param description the description to set
45
	 */
46
	public void setDescription(String description) {
47
		this.description = description;
48
	}
49
 
50
	/**
51
	 * @return the description
52
	 */
53
	public String getDescription() {
54
		return description;
55
	}
56
 
57
	/**
58
	 * @param datatypeDefinitionID the datatypeDefinitionID to set
59
	 */
60
	public void setDatatypeDefinitionID(long datatypeDefinitionID) {
61
		this.datatypeDefinitionID = datatypeDefinitionID;
62
	}
63
 
64
	/**
65
	 * @return the datatypeDefinitionID
66
	 */
67
	public long getDatatypeDefinitionID() {
68
		return datatypeDefinitionID;
69
	}
70
 
71
}