所有类


javax.swing.undo
接口 StateEditable


public interface StateEditable

StateEditable 定义可以由 StateEdit 撤消/恢复其状态的对象的接口。

另请参见:
StateEdit

字段摘要
static StringRCSID
          此类的资源 ID。
 
方法摘要
 voidrestoreState(Hashtable<?,?> state)
          收到此消息时,接收者应从 state 中提取任何相关状态。
 voidstoreState(Hashtable<Object,Object> state)
          收到此消息时,接收者应把任何相关状态放置到 state 中。
 

字段详细信息

RCSID

static final String RCSID
此类的资源 ID。

另请参见:
常量字段值
方法详细信息

storeState

void storeState(Hashtable<Object,Object> state)
收到此消息时,接收者应把任何相关状态放置到 state 中。


restoreState

void restoreState(Hashtable<?,?> state)
收到此消息时,接收者应从 state 中提取任何相关状态。


所有类