Subversion Repositories SmartDukaan

Rev

Rev 10 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10 Rev 34
Line 21... Line 21...
21
	private String content;
21
	private String content;
22
 
22
 
23
    /**
23
    /**
24
     * 
24
     * 
25
     */
25
     */
26
    public FreeformContent() {
26
    public FreeformContent(String value) {
-
 
27
        this.content = value;
27
    }
28
    }
28
 
29
 
29
    /**
30
    /**
30
     * 
31
     * 
31
     * @return content
32
     * @return content
Line 42... Line 43...
42
     */
43
     */
43
    public void setContent(String value) {
44
    public void setContent(String value) {
44
        this.content = value;
45
        this.content = value;
45
    }
46
    }
46
 
47
 
-
 
48
	/* (non-Javadoc)
-
 
49
	 * @see java.lang.Object#toString()
-
 
50
	 */
-
 
51
	@Override
-
 
52
	public String toString() {
-
 
53
		return "FreeformContent [content=" + content + "]";
-
 
54
	}
-
 
55
 
47
}
56
}