From 951e3b4bdb84d8b1bfe9c049f5d5f2428f3f4369 Mon Sep 17 00:00:00 2001 From: David Dykstal Date: Tue, 26 Jun 2007 20:46:28 +0000 Subject: [PATCH] [193734] replace obsolete action class references with IObjectActionDelegate --- .../guide/plugin/popup.html | 34 +++---------------- 1 file changed, 5 insertions(+), 29 deletions(-) diff --git a/rse/doc/org.eclipse.rse.doc.isv/guide/plugin/popup.html b/rse/doc/org.eclipse.rse.doc.isv/guide/plugin/popup.html index 687e8620b76..63fbe40099e 100755 --- a/rse/doc/org.eclipse.rse.doc.isv/guide/plugin/popup.html +++ b/rse/doc/org.eclipse.rse.doc.isv/guide/plugin/popup.html @@ -148,38 +148,14 @@ specifying all the menu Ids up to the final menu, slash-separated, and then the

Programming Details

-

To use this extension point you will create a class that extends the -SystemAbstractPopupMenuExtensionAction class in the -package org.eclipse.rse.ui.actions. This is your action class, -and when the user selects your action, the run() -method in your action class will be called. You will rarely extend the SystemAbstractPopupMenuExtensionAction base class -directly, though. Instead there are subclasses of it that offer additional functionality for specific types of remote objects, -as shown here: +

To use this extension point you will create a class that implements + +IObjectActionDelegate + from the Eclipse platform.

- - - - - - - - - - - - - - - - - -
Base ClassDescription
SystemAbstractPopupMenuExtensionAction in - org.eclipse.rse.ui pluginBase class offering generic support for any remote object pop-up menu action, for any system type.
SystemAbstractRemoteFilePopupMenuExtensionAction - in org.eclipse.rse.files.ui pluginSpecialized base class offering specific support for any remote file object pop-up menu action, for any system type.
-

See the pop-up menu action tutorial for a step-by-step example.

See the Eclipse Platform Programmer's Guide - for more background information.

+for more background information.