blob: b5238a437538d0e77baa633c69bec4184a400f12 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation 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:
* 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
*/
public String[] getShowInTargetIds();
}