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
     */
34 naveen 26
    public FreeformContent(String value) {
27
        this.content = value;
10 shop2020 28
    }
29
 
30
    /**
31
     * 
32
     * @return content
33
     *     
34
     */
35
    public String getContent() {
36
        return this.content;
37
    }
38
 
39
    /**
40
     * 
41
     * @param value
42
     *     
43
     */
44
    public void setContent(String value) {
45
        this.content = value;
46
    }
47
 
34 naveen 48
	/* (non-Javadoc)
49
	 * @see java.lang.Object#toString()
50
	 */
51
	@Override
52
	public String toString() {
53
		return "FreeformContent [content=" + content + "]";
54
	}
55
 
10 shop2020 56
}