blob: f2884565e81a36cad8617f0c195e78ef4adca443 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 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.part;
/**
* Show In sources which need to provide additional entries to the Show In list
* of targets can provide this interface. The part can either directly implement
* this interface, or provide it via
* <code>IAdaptable.getAdapter(IShowInTargetList)</code>.
*
* @see IShowInSource
* @see IShowInTarget
*
* @since 2.1
*/
public interface IShowInTargetList {
/**
* Returns the identifiers for the target parts to show. The target parts must
* be Show In targets.
*
* @return the identifiers for the target parts to show
*
* @see IShowInTarget
*/
String[] getShowInTargetIds();
}