blob: 844ac79a5cf15aebb25c0d1be08b8d02e28a4369 [file] [log] [blame]
package org.eclipse.dltk.debug.ui.actions;
import org.eclipse.core.runtime.Preferences;
import org.eclipse.dltk.debug.core.DLTKDebugPlugin;
import org.eclipse.dltk.debug.core.DebugPreferenceConstants;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.ui.IViewActionDelegate;
import org.eclipse.ui.IViewPart;
public class ToggleShowGlobalVariablesActionDelegate implements
IViewActionDelegate {
protected Preferences getPrefs() {
return DLTKDebugPlugin.getDefault().getPluginPreferences();
}
public void init(IViewPart view) {
}
public void run(IAction action) {
boolean value = getPrefs().getBoolean(
DebugPreferenceConstants.PREF_DBGP_SHOW_SCOPE_GLOBAL);
getPrefs().setValue(
DebugPreferenceConstants.PREF_DBGP_SHOW_SCOPE_GLOBAL, !value);
}
public void selectionChanged(IAction action, ISelection selection) {
}
}