blob: 211ba8844c69892ea47db5787c64263da719078e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2011 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 ShowThreadGroups extends ToggleBooleanPreferenceAction {
/* (non-Javadoc)
* @see org.eclipse.jdt.internal.debug.ui.actions.ViewFilterAction#getPreferenceKey()
*/
@Override
protected String getPreferenceKey() {
return IJavaDebugUIConstants.PREF_SHOW_THREAD_GROUPS;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.internal.debug.ui.actions.ViewFilterAction#getCompositeKey()
*/
@Override
protected String getCompositeKey() {
return getPreferenceKey();
}
}