blob: c0ec85428fda9bb703f41ad92f29b4f331c9b9db [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.ui.actions.editpart;
import org.eclipse.bpel.model.BPELPackage;
import org.eclipse.bpel.ui.BPELUIPlugin;
import org.eclipse.bpel.ui.IBPELUIConstants;
import org.eclipse.bpel.ui.Messages;
import org.eclipse.bpel.ui.commands.CompoundCommand;
import org.eclipse.bpel.ui.commands.InsertInContainerCommand;
import org.eclipse.bpel.ui.commands.SetNameAndDirectEditCommand;
import org.eclipse.bpel.ui.factories.UIObjectFactoryProvider;
import org.eclipse.bpel.ui.util.BPELUtil;
import org.eclipse.bpel.ui.util.ModelHelper;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gef.EditPart;
import org.eclipse.jface.resource.ImageDescriptor;
/**
* CreateCompensationHandlerAction
*
* @author IBM Original contribution.
*
*/
public class CreateCompensationHandlerAction extends AbstractAction {
/**
* Create a brand new CreateCompensationHandlerAction object.
*
* @param anEditPart the edit part to create the action on.
*/
public CreateCompensationHandlerAction(EditPart anEditPart) {
super(anEditPart);
}
/**
* @see org.eclipse.bpel.ui.actions.editpart.IEditPartAction#getIcon()
*/
public ImageDescriptor getIcon() {
return BPELUIPlugin.INSTANCE.getImageDescriptor(IBPELUIConstants.ICON_ACTION_COMPENSATIONHANDLER);
}
/**
* @see org.eclipse.bpel.ui.actions.editpart.IEditPartAction#onButtonPressed()
*/
public boolean onButtonPressed() {
CompoundCommand command = new CompoundCommand(IBPELUIConstants.CMD_ADD_COMPENSATIONHANDLER);
final EObject child = UIObjectFactoryProvider.getInstance().getFactoryFor(
BPELPackage.eINSTANCE.getCompensationHandler() ).createInstance();
command.add(new InsertInContainerCommand((EObject)modelObject, child, null));
command.add(new SetNameAndDirectEditCommand(child, viewer));
ModelHelper.getBPELEditor(modelObject).getCommandStack().execute(command);
BPELUtil.setShowCompensationHandler(editPart, true);
return true;
}
/**
* @see org.eclipse.bpel.ui.actions.editpart.IEditPartAction#getToolTip()
*/
public String getToolTip() {
return Messages.CreateCompensationHandlerAction_Add_Compensation_Handler_1;
}
}