blob: 371757c027fa0bff991881b4732d412a3c67bac3 [file] [log] [blame]
package org.eclipse.ui.views.properties;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Interface used by <code>PropertySheetRoot</code> to obtain an
* <code>IPropertySource</code> for a given object.
* <p>
* This interface may be implemented by clients.
* </p>
*/
public interface IPropertySourceProvider {
/**
* Returns a property source for the given object.
*
* @param object the object
*/
public IPropertySource getPropertySource(Object object);
}