package net.xoetrope.xui;
import java.awt.Component;
/**
* A generic interface that allows stateful components to bind their state
* <p>Copyright (c) Xoetrope Ltd., 1998-2004</p>
* $Revision: 1.3 $
*/
public interface XStateHolder
{
/**
* Get the component state
* @return the object state
*/
public Object getComponentState();
/**
* Set the component state
* @param the new component state
*/
public void setComponentState( Object object );
}
|