1 11 package org.eclipse.debug.internal.ui.actions.variables; 12 13 import org.eclipse.debug.internal.ui.actions.SelectAllAction; 14 import org.eclipse.debug.ui.IDebugView; 15 16 public class SelectAllVariablesAction extends SelectAllAction { 17 18 19 protected String getActionId() { 20 return IDebugView.SELECT_ALL_ACTION + ".Variables"; } 22 23 26 protected void initialize() { 27 } 28 29 32 protected boolean isEnabled() { 33 return true; 35 } 36 } 37 | Popular Tags |