blob: 8f7e458d1187931f9a8cb6dc8ed609172f3c07ca [file] [log] [blame]
package org.eclipse.ui;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.IAdaptable;
/**
* The IContributorResourceAdapter is an interface that defines
* the API required to get a resource that an object adapts to
* for use of object contributions, decorators and property
* pages that have adaptable = true.
* Implementors of this interface are typically registered with an
* IAdapterFactory for lookup via the getAdapter() mechanism.
*/
public interface IContributorResourceAdapter {
/**
* Return the resource that the supplied adaptable
* adapts to. An IContributorResourceAdapter assumes
* that any object passed to it adapts to one equivalent
* resource.
* @return <code>IResource</code> or <code>null</code> if there
* is no adapted resource for this type.
* @param IAdaptable the adaptable being queried.
*/
public IResource getAdaptedResource(IAdaptable adaptable);
}