Package org.jbpm.jsf.core.impl

Examples of org.jbpm.jsf.core.impl.JbpmActionListenerWrapper


            buttonTargetValueExpression = buttonTargetTagAttribute.getValueExpression(ctx, String.class);
        } else {
            buttonTargetValueExpression = null;
        }
        UITaskForm taskForm = ((UITaskForm)c);
        taskForm.addActionListener(new JbpmActionListenerWrapper(
            new TaskFormButtonActionListener(transitionTargetValueExpression, buttonTargetValueExpression),
            null,
            null,
            null
        ));
View Full Code Here


        if (! (parent instanceof ActionSource)) {
            throw new TagException(tag, "Parent component is not an ActionSource");
        }
        if (ComponentSupport.isNew(parent)) {
            ((ActionSource) parent).addActionListener(
                new JbpmActionListenerWrapper(
                    getListener(ctx),
                    getValueExpression(unlessAttribute, ctx, Boolean.class),
                    getValueExpression(navigateAttribute, ctx, Boolean.class),
                    getValueExpression(nameAttribute, ctx, String.class)
                )
View Full Code Here

TOP

Related Classes of org.jbpm.jsf.core.impl.JbpmActionListenerWrapper

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.