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
 * @author naveen
11
 *
12
 */
13
public class FreeformContent extends MetaModelComponent {
14
 
15
	/**
16
	 * 
17
	 */
18
	private static final long serialVersionUID = 1L;
19
 
20
	// Encoded multimedia content
21
	private String content;
22
 
23
    /**
24
     * 
25
     */
26
    public FreeformContent() {
27
    }
28
 
29
    /**
30
     * 
31
     * @return content
32
     *     
33
     */
34
    public String getContent() {
35
        return this.content;
36
    }
37
 
38
    /**
39
     * 
40
     * @param value
41
     *     
42
     */
43
    public void setContent(String value) {
44
        this.content = value;
45
    }
46
 
47
}