blob: 37e0a22681929a1318342408e1f4971e4626adcc [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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.ui.actions.editpart;
import org.eclipse.bpel.model.PartnerLink;
import org.eclipse.bpel.ui.BPELUIPlugin;
import org.eclipse.bpel.ui.IBPELUIConstants;
import org.eclipse.bpel.ui.Messages;
import org.eclipse.bpel.ui.commands.SetPartnerLinkCommand;
import org.eclipse.bpel.ui.dialogs.PartnerLinkSelectorDialog;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gef.EditPart;
import org.eclipse.gef.commands.Command;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.window.Window;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Shell;
public class SetPartnerLinkAction extends AbstractAction {
public SetPartnerLinkAction(EditPart editPart) {
super(editPart);
}
public ImageDescriptor getIcon() {
return BPELUIPlugin.INSTANCE.getImageDescriptor(IBPELUIConstants.ICON_ACTION_PARTNERLINK);
}
public Image getIconImg() {
return BPELUIPlugin.INSTANCE.getImage(IBPELUIConstants.ICON_ACTION_PARTNERLINK);
}
public boolean onButtonPressed() {
Shell shell = viewer.getControl().getShell();
EObject model = (EObject)editPart.getModel();
PartnerLinkSelectorDialog dialog = new PartnerLinkSelectorDialog(shell, model);
if (dialog.open() == Window.OK) {
PartnerLink partner = dialog.getPartnerLink();
Command command = new SetPartnerLinkCommand(model, partner);
viewer.getEditDomain().getCommandStack().execute(command);
}
return true;
}
public String getToolTip() {
return Messages.SetPartnerLinkAction_Set_Partner_1;
}
@Override
public ImageDescriptor getDisabledIcon() { return ImageDescriptor.getMissingImageDescriptor(); }
@Override
public boolean isEnabled() { return true; }
}