Subversion Repositories SmartDukaan

Rev

Rev 323 | Details | Compare with Previous | 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
/**
45 naveen 9
 * Represents structured part of a Bullet. Various subclasses represent 
10
 * different types of structured data.
10 shop2020 11
 * 
12
 * @author naveen
13
 *
14
 */
22 naveen 15
public abstract class BulletDataObject extends MetaModelComponent {
10 shop2020 16
 
17
	/**
18
	 * 
19
	 */
20
	private static final long serialVersionUID = 1L;
21
 
22
	/**
23
	 * 
24
	 */
25
	public BulletDataObject() {
26
		super();
27
	}
28
}