home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / swing / undo / UndoableEdit.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  512 b   |  26 lines

  1. package javax.swing.undo;
  2.  
  3. public interface UndoableEdit {
  4.    void undo() throws CannotUndoException;
  5.  
  6.    boolean canUndo();
  7.  
  8.    void redo() throws CannotRedoException;
  9.  
  10.    boolean canRedo();
  11.  
  12.    void die();
  13.  
  14.    boolean addEdit(UndoableEdit var1);
  15.  
  16.    boolean replaceEdit(UndoableEdit var1);
  17.  
  18.    boolean isSignificant();
  19.  
  20.    String getPresentationName();
  21.  
  22.    String getUndoPresentationName();
  23.  
  24.    String getRedoPresentationName();
  25. }
  26.