public interface

StateEditable

javax.swing.undo.StateEditable

Class Overview

StateEditable defines the interface for objects that can have their state undone/redone by a StateEdit.

See Also

Summary

Constants
String RCSID Resource ID for this class.
Public Methods
abstract void restoreState(Hashtable<?, ?> state)
Upon receiving this message the receiver should extract any relevant state out of state.
abstract void storeState(Hashtable<ObjectObject> state)
Upon receiving this message the receiver should place any relevant state into state.

Constants

public static final String RCSID

Resource ID for this class.

Constant Value: "$Id: StateEditable.java,v 1.2 1997/09/08 19:39:08 marklin Exp $"

Public Methods

public abstract void restoreState (Hashtable<?, ?> state)

Upon receiving this message the receiver should extract any relevant state out of state.

public abstract void storeState (Hashtable<ObjectObject> state)

Upon receiving this message the receiver should place any relevant state into state.