blob: 627463ba23d38d2dafe1615cfd1f4b49750d97e4 [file] [log] [blame]
package org.eclipse.jst.jsf.common.internal.managedobject;
/**
* Represents an object that wishes to be managed by the framework.
*
* Clients should not implement: sub-class AbstractManagedObject instead.
*
*/
public interface IManagedObject
{
/**
* Called by the object client to indicate is finished with the object
*/
void dispose();
}