Package org.jbpm.ui.common.action

Source Code of org.jbpm.ui.common.action.AddActionDelegate

package org.jbpm.ui.common.action;

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

public class AddActionDelegate extends BaseActionDelegate {

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

    protected Active getTargetElement() {
        return (Active) selectedPart.getModel();
    }

}
TOP

Related Classes of org.jbpm.ui.common.action.AddActionDelegate

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.