
org.eclipse.debug.ui.IDetailPane2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.eclipse.debug.ui Show documentation
Show all versions of org.eclipse.debug.ui Show documentation
This is org.eclipse.debug.ui jar used by Scout SDK
The newest version!
/*******************************************************************************
* Copyright (c) 2008 Wind River Systems, Inc. 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:
* 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.
*
* Clients may implement this interface.
*
*
* @since 3.5
*/
public interface IDetailPane2 extends IDetailPane {
/**
* Request the selection provider of this detail pane.
*
* This method is called on every focus change of the Control
* returned by {@link #createControl(org.eclipse.swt.widgets.Composite)
* createControl(Composite)}.
*
*
* @return the selection provider of this detail pane or null
*/
public ISelectionProvider getSelectionProvider();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy