Package org.jbpm.ui.jpdl2.action

Source Code of org.jbpm.ui.jpdl2.action.AddActionDelegate2

package org.jbpm.ui.jpdl2.action;

import org.eclipse.jface.action.IAction;
import org.jbpm.ui.common.action.AddActionDelegate;
import org.jbpm.ui.common.command.AddActionCommand;

public class AddActionDelegate2 extends AddActionDelegate {

    @Override
    public void run(IAction action) {
        AddActionCommand command = new AddActionCommand();
        command.setTarget(getTargetElement());
        executeCommand(command);
    }


}
TOP

Related Classes of org.jbpm.ui.jpdl2.action.AddActionDelegate2

TOP
Copyright © 2018 www.massapi.com. 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.