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
/**
45 naveen 9
 * Represents un-structured data about Slide, Feature and Bullet. It is used
10
 * judiciously by content developers to store multi-media content in support
11
 * component they are attached to.
10 shop2020 12
 * 
13
 * @author naveen
14
 *
15
 */
16
public class FreeformContent extends MetaModelComponent {
17
 
18
	/**
19
	 * 
20
	 */
21
	private static final long serialVersionUID = 1L;
22
 
23
	// Encoded multimedia content
24
	private String content;
25
 
26
    /**
27
     * 
28
     */
34 naveen 29
    public FreeformContent(String value) {
30
        this.content = value;
10 shop2020 31
    }
32
 
33
    /**
34
     * 
35
     * @return content
36
     *     
37
     */
38
    public String getContent() {
39
        return this.content;
40
    }
41
 
42
    /**
43
     * 
44
     * @param value
45
     *     
46
     */
47
    public void setContent(String value) {
48
        this.content = value;
49
    }
50
 
34 naveen 51
	/* (non-Javadoc)
52
	 * @see java.lang.Object#toString()
53
	 */
54
	@Override
55
	public String toString() {
56
		return "FreeformContent [content=" + content + "]";
57
	}
58
 
10 shop2020 59
}