KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > debug > ui > actions > ShowMonitorThreadInformation


1 /*******************************************************************************
2  * Copyright (c) 2004, 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 ShowMonitorThreadInformation extends ToggleBooleanPreferenceAction {
19
20     /* (non-Javadoc)
21      * @see org.eclipse.jdt.internal.debug.ui.actions.ViewFilterAction#getPreferenceKey()
22      */

23     protected String JavaDoc getPreferenceKey() {
24         return IJavaDebugUIConstants.PREF_SHOW_MONITOR_THREAD_INFO;
25     }
26 }
27
Popular Tags