blob: 51658cb93d212925ab610d9ebe65b462cc00474c [file] [log] [blame]
package org.eclipse.jdt.internal.debug.ui.monitors;
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
This file is made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html
**********************************************************************/
/**
* Action to switch to the Threads centric view in the MonitorsView
*/
public class ToggleThreadsViewAction extends ToggleViewAction {
protected int getViewId() {
return MonitorsView.VIEW_ID_THREAD;
}
}