blob: 5c5df4de09dc758f7eb05e2fbd86866707df907a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 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.jdt.internal.debug.ui.actions;
import org.eclipse.jdt.debug.ui.IJavaDebugUIConstants;
/**
* Toggle to display the thread and monitor information in the debug view.
*/
public class ShowMonitorThreadInformation extends ToggleBooleanPreferenceAction {
/* (non-Javadoc)
* @see org.eclipse.jdt.internal.debug.ui.actions.ViewFilterAction#getPreferenceKey()
*/
protected String getPreferenceKey() {
return IJavaDebugUIConstants.PREF_SHOW_MONITOR_THREAD_INFO;
}
}