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
/**
7
 * @author naveen
8
 *
9
 */
10
public class PrimitiveDataObject extends BulletDataObject {
11
 
12
	/**
13
	 * 
14
	 */
15
	private static final long serialVersionUID = 1L;
16
	private String value;
17
 
18
	/**
19
	 * 
20
	 * @param value
21
	 */
22
	public PrimitiveDataObject(String value) {
23
		super();
24
		this.value = value;
25
	}
26
 
27
	/**
28
	 * 
29
	 * @return value
30
	 */
31
	public String getValue() {
32
		return this.value;
33
	}
34
}