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.core;
5
 
6
import in.shop2020.metamodel.util.MetaModelComponent;
7
 
8
 
9
/**
10
 * 
11
 * @author naveen
12
 *
13
 */
14
public class Bullet extends MetaModelComponent {
15
	/**
16
	 * 
17
	 */
18
	private static final long serialVersionUID = 1L;
19
	private int bulletDefinitionID;
20
	private BulletDataObject dataObject;
21
	private FreeformContent freeformContent;
22
 
23
	/**
24
	 * 
25
	 * @param bulletDefintionID
26
	 */
27
	public Bullet(int bulletDefintionID) {
28
		this.bulletDefinitionID = bulletDefintionID;
29
	}
30
 
31
	/**
32
	 * 
33
	 * @return bulletDefinitionID
34
	 */
35
	public int getBulletDefinitionID() {
36
		return this.bulletDefinitionID;
37
	}
38
 
39
	/**
40
	 * @param dataObject the dataObject to set
41
	 */
42
	public void setDataObject(BulletDataObject dataObject) {
43
		this.dataObject = dataObject;
44
	}
45
 
46
	/**
47
	 * @return the dataObject
48
	 */
49
	public BulletDataObject getDataObject() {
50
		return this.dataObject;
51
	}
52
 
53
    /**
54
     * 
55
     * @return freeformContent
56
     *     
57
     */
58
    public FreeformContent getFreeformContent() {
59
        return this.freeformContent;
60
    }
61
 
62
    /**
63
     * 
64
     * @param value
65
     *     
66
     */
67
    public void setFreeformContent(FreeformContent value) {
68
        this.freeformContent = value;
69
    }
70
 
71
}