blob: 1e9b32cf23f2f1fd2c45ad36ed6174ea70457636 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Wind River Systems, Inc. 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:
* Wind River Systems - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.ui;
import org.eclipse.jface.viewers.ISelectionProvider;
/**
* An extension to the detail pane interface which allows implementors to
* provide a selection provider instead of setting the selection provider of the
* view's {@link org.eclipse.ui.IWorkbenchPartSite site} directly.
* <p>
* Clients may implement this interface.
* </p>
*
* @since 3.5
*/
public interface IDetailPane2 extends IDetailPane {
/**
* Request the selection provider of this detail pane.
* <p>
* This method is called on every focus change of the <code>Control</code>
* returned by {@link #createControl(org.eclipse.swt.widgets.Composite)
* createControl(Composite)}.
* </p>
*
* @return the selection provider of this detail pane or <code>null</code>
*/
ISelectionProvider getSelectionProvider();
}