diff --git a/rse/doc/org.eclipse.rse.doc.isv/guide/tutorial/ShowJarContents1.html b/rse/doc/org.eclipse.rse.doc.isv/guide/tutorial/ShowJarContents1.html index 90e137bc22a..e49235490b2 100755 --- a/rse/doc/org.eclipse.rse.doc.isv/guide/tutorial/ShowJarContents1.html +++ b/rse/doc/org.eclipse.rse.doc.isv/guide/tutorial/ShowJarContents1.html @@ -10,34 +10,36 @@
package samples.ui.actions; -import org.eclipse.rse.files.ui.actions.SystemAbstractRemoteFilePopupMenuExtensionAction; +import org.eclipse.jface.action.IAction; +import org.eclipse.jface.viewers.ISelection; +import org.eclipse.ui.IObjectActionDelegate; +import org.eclipse.ui.IWorkbenchPart; -public class ShowJarContents - extends SystemAbstractRemoteFilePopupMenuExtensionAction -{ +public class ShowJarContents implements IObjectActionDelegate { - /** - * Constructor for ShowJarContents. - */ - public ShowJarContents() - { - super(); + public ShowJarContents() { + // TODO Auto-generated constructor stub } - /** - * @see org.eclipse.rse.ui.actions.SystemAbstractPopupMenuExtensionAction#run() - */ - public void run() - { + public void setActivePart(IAction action, IWorkbenchPart targetPart) { + // TODO Auto-generated method stub + + } + + public void run(IAction action) { + // TODO Auto-generated method stub + + } + + public void selectionChanged(IAction action, ISelection selection) { + // TODO Auto-generated method stub + } } --