1 /******************************************************************************* 2 * Copyright (c) 2006 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.jdt.internal.debug.ui.actions; 12 13 import org.eclipse.jdt.debug.ui.IJavaDebugUIConstants; 14 15 /** 16 * Toggle to display the thread and monitor information in the debug view. 17 */ 18 public class ShowThreadGroups extends ToggleBooleanPreferenceAction { 19 20 /* (non-Javadoc) 21 * @see org.eclipse.jdt.internal.debug.ui.actions.ViewFilterAction#getPreferenceKey() 22 */ 23 protected String getPreferenceKey() { 24 return IJavaDebugUIConstants.PREF_SHOW_THREAD_GROUPS; 25 } 26 27 } 28