Module java.desktop
Package javax.swing.undo

Interface StateEditable


public interface StateEditable
StateEditable 定义了可以通过 StateEdit 撤销/重做其状态的对象的接口。
参见:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    该类的资源ID。
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    restoreState(Hashtable<?,?> state)
    在接收到此消息后,接收方应该从 state 中提取出任何相关状态。
    void
    在接收到此消息后,接收方应该将任何相关状态放入 state 中。
  • Field Details

  • Method Details

    • storeState

      void storeState(Hashtable<Object,Object> state)
      在接收到此消息后,接收方应该将任何相关状态放入 state 中。
      参数:
      state - 用于存储状态的 Hashtable 对象
    • restoreState

      void restoreState(Hashtable<?,?> state)
      在接收到此消息后,接收方应该从 state 中提取出任何相关状态。
      参数:
      state - 用于从中恢复状态的 Hashtable 对象