blob: f4c62860ac0b5e2aea165043b3af18e5bafece21 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
*
* 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.ui.examples.propertysheet;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.ui.IObjectActionDelegate;
import org.eclipse.ui.IWorkbenchPart;
/**
* Action delegate for handling popup menu actions.
*/
public class PopupMenuActionDelegate implements IObjectActionDelegate {
private IWorkbenchPart part;
@Override
public void run(IAction action) {
MessageDialog.openInformation(this.part.getSite().getShell(),
MessageUtil.getString("Property_Sheet_Example"), //$NON-NLS-1$
MessageUtil.getString("Popup_Menu_Action_executed")); //$NON-NLS-1$
}
@Override
public void selectionChanged(IAction action, ISelection selection) {
//Ignored for this example
}
@Override
public void setActivePart(IAction action, IWorkbenchPart targetPart) {
this.part = targetPart;
}
}