blob: 95eb84a6ac5a56e864dcb6c774ad32d4c392a3ee [file] [log] [blame]
package org.eclipse.ui;
import org.eclipse.jface.viewers.ILabelDecorator;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* The primary interface between a view part and the outside world.
* <p>
* The workbench exposes its implemention of view part sites via this interface,
* which is not intended to be implemented or extended by clients.
* </p>
*/
public interface IViewSite extends IWorkbenchPartSite {
/**
* Returns the action bars for this part site.
* Views have exclusive use of their site's action bars.
*
* @return the action bars
*/
public IActionBars getActionBars();
}