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