1 11 12 package org.eclipse.debug.internal.ui.views.memory; 13 14 import org.eclipse.debug.ui.IDebugUIConstants; 15 import org.eclipse.ui.help.WorkbenchHelp; 16 17 18 23 public class PrintViewTabContextAction extends PrintViewTabAction 24 { 25 IMemoryViewTab fViewTab; 26 27 public PrintViewTabContextAction(IMemoryViewTab viewTab) 28 { 29 super(); 30 fViewTab = viewTab; 31 WorkbenchHelp.setHelp(this, IDebugUIConstants.PLUGIN_ID + ".PrintViewTabContextAction_context"); } 33 34 35 38 IMemoryViewTab getViewTab() 39 { 40 return fViewTab; 41 } 42 43 } 44 | Popular Tags |