blob: dbd0ce401333edfee31d381053a105427e776744 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.views.variables;
import org.eclipse.debug.internal.ui.preferences.IDebugPreferenceConstants;
import org.eclipse.jface.action.IAction;
/**
* An action delegate that toggles the state of its viewer to
* use word wrap in the details pane.
*/
public class DetailPaneWordWrapAction extends VariableViewToggleAction {
/**
* @see VariableFilterAction#getPreferenceKey()
*/
protected String getPreferenceKey() {
return IDebugPreferenceConstants.PREF_DETAIL_PANE_WORD_WRAP;
}
/* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
*/
public void run(IAction action) {
super.run(action);
((VariablesView)getView()).toggleDetailPaneWordWrap(action.isChecked());
}
}