Package org.jbpm.formapi.shared.api.items

Examples of org.jbpm.formapi.shared.api.items.HTMLRepresentation


        this.html.setHTML(html);
    }
   
    @Override
    public FormItemRepresentation getRepresentation() {
        HTMLRepresentation rep = super.getRepresentation(new HTMLRepresentation());
        rep.setContent(html.getHTML());
        return rep;
    }
View Full Code Here


    public void populate(FormItemRepresentation rep) throws FormBuilderException {
        if (!(rep instanceof HTMLRepresentation)) {
            throw new FormBuilderException(i18n.RepNotOfType(rep.getClass().getName(), "HTMLRepresentation"));
        }
        super.populate(rep);
        HTMLRepresentation hrep = (HTMLRepresentation) rep;
        this.setContent(hrep.getContent());
    }
View Full Code Here

TOP

Related Classes of org.jbpm.formapi.shared.api.items.HTMLRepresentation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.