Subversion Repositories SmartDukaan

Rev

Rev 10 | Rev 45 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

/**
 * 
 */
package in.shop2020.metamodel.core;

import in.shop2020.metamodel.util.MetaModelComponent;

/**
 * 
 * @author naveen
 *
 */
public class FreeformContent extends MetaModelComponent {
        
        /**
         * 
         */
        private static final long serialVersionUID = 1L;
        
        // Encoded multimedia content
        private String content;

    /**
     * 
     */
    public FreeformContent(String value) {
        this.content = value;
    }

    /**
     * 
     * @return content
     *     
     */
    public String getContent() {
        return this.content;
    }

    /**
     * 
     * @param value
     *     
     */
    public void setContent(String value) {
        this.content = value;
    }

        /* (non-Javadoc)
         * @see java.lang.Object#toString()
         */
        @Override
        public String toString() {
                return "FreeformContent [content=" + content + "]";
        }

}