Subversion Repositories SmartDukaan

Rev

Rev 34 | 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() {
    }

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

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

}