blob: 98b02c87fbab7371e0c4eb994818ad8f33bc4054 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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 - Initial API and implementation
*******************************************************************************/
package org.eclipse.core.tools;
import org.eclipse.ui.part.ViewPart;
/**
* A common base class for all Spy Plug-in views
*/
public abstract class SpyView extends ViewPart {
/**
* SpyView constructor comment.
*/
public SpyView() {
super();
}
/**
* Asks this part to take focus within the workbench. Does nothing.
*/
public void setFocus() {
// do nothing
}
}