blob: f7810a903e137df4d35299519dec60b82f8c4119 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.intro;
import org.eclipse.ui.IActionBars;
import org.eclipse.ui.IKeyBindingService;
import org.eclipse.ui.IWorkbenchSite;
/**
* The primary interface between an intro part and the workbench.
* <p>
* The workbench exposes its implemention of intro part sites via this
* interface, which is not intended to be implemented or extended by clients.
* </p>
*
* @since 3.0
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IIntroSite extends IWorkbenchSite {
/**
* Returns the part registry extension id for this intro site's part.
* <p>
* The name comes from the <code>id</code> attribute in the configuration
* element.
* </p>
*
* @return the registry extension id
*/
String getId();
/**
* Returns the unique identifier of the plug-in that defines this intro site's
* part.
*
* @return the unique identifier of the declaring plug-in
*/
String getPluginId();
/**
* Returns the key binding service in use.
* <p>
* The part will access this service to register all of its actions, to set the
* active scope.
* </p>
*
* @return the key binding service in use
* @deprecated Use IServiceLocator#getService(*) to retrieve IContextService and
* IHandlerService instead.
*/
@Deprecated
IKeyBindingService getKeyBindingService();
/**
* Returns the action bars for this part site. The intro part has exclusive use
* of its site's action bars.
*
* @return the action bars
*/
IActionBars getActionBars();
}