blob: 2669adef0d458ea538052d6c0ce9957eef9b00e0 [file] [log] [blame]
package org.eclipse.ui.part;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.ui.*;
/**
* This interface is used to identify workbench views which
* allow other parts (typically the active part) to supply
* their contents.
* The interface allows access to the part which contributed the current
* contents.
*/
public interface IContributedContentsView {
/**
* Returns the workbench part which contributed the
* current contents of this view.
*
* @return the part which contributed the current contents
*/
public IWorkbenchPart getContributingPart();
}