1 /******************************************************************************* 2 * Copyright (c) 2000, 2006 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 12 package org.eclipse.ui.part; 13 14 /** 15 * Show In sources which need to provide additional entries to the Show In list of targets 16 * can provide this interface. 17 * The part can either directly implement this interface, or provide it 18 * via <code>IAdaptable.getAdapter(IShowInTargetList)</code>. 19 * 20 * @see IShowInSource 21 * @see IShowInTarget 22 * 23 * @since 2.1 24 */ 25 public interface IShowInTargetList { 26 27 /** 28 * Returns the identifiers for the target parts to show. 29 * The target parts must be Show In targets. 30 * 31 * @return the identifiers for the target parts to show 32 * 33 * @see IShowInTarget 34 */ 35 public String[] getShowInTargetIds(); 36 } 37