Subversion Repositories SmartDukaan

Rev

Rev 43 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 43 Rev 45
Line 5... Line 5...
5
 
5
 
6
import in.shop2020.metamodel.util.MetaModelComponent;
6
import in.shop2020.metamodel.util.MetaModelComponent;
7
 
7
 
8
 
8
 
9
/**
9
/**
10
 * Represents leaf component of shop2020 Content Meta-model hierarchy. A part 
10
 * Represents structured data and un-structured content about a Feature. 
11
 * from facts it can also contain free-form content.
11
 * It is the leaf component of shop2020 Content Meta-model hierarchy. 
12
 * 
12
 * 
13
 * @author naveen
13
 * @author naveen
14
 *
14
 *
15
 */
15
 */
16
public class Bullet extends MetaModelComponent {
16
public class Bullet extends MetaModelComponent {
17
	/**
17
	/**
18
	 * 
18
	 * 
19
	 */
19
	 */
20
	private static final long serialVersionUID = 1L;
20
	private static final long serialVersionUID = 1L;
-
 
21
	
-
 
22
	/**
-
 
23
	 * Structured data part of the bullet instance
-
 
24
	 */
21
	private BulletDataObject dataObject;
25
	private BulletDataObject dataObject;
-
 
26
	
-
 
27
	/**
-
 
28
	 * Un-structured free-form part of bullet instance
-
 
29
	 */
22
	private FreeformContent freeformContent;
30
	private FreeformContent freeformContent;
23
	
31
	
24
	/**
32
	/**
25
	 * 
33
	 * 
26
	 * @param dataObject data part of the bullet instance
34
	 * @param dataObject mandatory structured data instance
27
	 */
35
	 */
28
	public Bullet(BulletDataObject dataObject) {
36
	public Bullet(BulletDataObject dataObject) {
29
		this.dataObject = dataObject;
37
		this.dataObject = dataObject;
30
	}
38
	}
31
	
39