Uses of Interface
org.jhotdraw.util.Undoable

Packages that use Undoable
org.jhotdraw.contrib   
org.jhotdraw.contrib.dnd   
org.jhotdraw.figures   
org.jhotdraw.framework   
org.jhotdraw.standard   
org.jhotdraw.util   
 

Uses of Undoable in org.jhotdraw.contrib
 

Classes in org.jhotdraw.contrib that implement Undoable
static class PolygonHandle.UndoActivity
           
static class TextAreaTool.UndoActivity
          Handles undo/redo for text areas
 

Uses of Undoable in org.jhotdraw.contrib.dnd
 

Classes in org.jhotdraw.contrib.dnd that implement Undoable
static class JHDDragSourceListener.RemoveUndoActivity
           
static class JHDDropTargetListener.AddUndoActivity
           
 

Uses of Undoable in org.jhotdraw.figures
 

Classes in org.jhotdraw.figures that implement Undoable
static class BorderTool.UndoActivity
           
static class ConnectedTextTool.DeleteUndoActivity
          This class
static class ConnectedTextTool.UndoActivity
           
static class FontSizeHandle.UndoActivity
           
static class GroupCommand.UndoActivity
           
 class InsertImageCommand.UndoActivity
           
static class PolyLineHandle.UndoActivity
           
static class TextTool.UndoActivity
           
static class UngroupCommand.UndoActivity
           
 

Uses of Undoable in org.jhotdraw.framework
 

Methods in org.jhotdraw.framework that return Undoable
 Undoable Tool.getUndoActivity()
           
 Undoable Handle.getUndoActivity()
          Returns an Undoable to be used by the Undo/Redo infrastructure.
 

Methods in org.jhotdraw.framework with parameters of type Undoable
 void Tool.setUndoActivity(Undoable newUndoableActivity)
           
 void Handle.setUndoActivity(Undoable newUndoableActivity)
          Sets an Undoable to be used by the Undo/Redo infrastructure.
 

Uses of Undoable in org.jhotdraw.standard
 

Classes in org.jhotdraw.standard that implement Undoable
static class AlignCommand.UndoActivity
           
static class BringToFrontCommand.UndoActivity
           
static class ChangeAttributeCommand.UndoActivity
           
static class ChangeConnectionEndHandle.UndoActivity
           
static class ChangeConnectionHandle.UndoActivity
           
static class ChangeConnectionStartHandle.UndoActivity
           
static class ConnectionTool.UndoActivity
           
static class CutCommand.UndoActivity
           
static class DeleteCommand.UndoActivity
           
static class DragTracker.UndoActivity
           
static class PasteCommand.UndoActivity
           
static class SelectAllCommand.UndoActivity
           
static class SendToBackCommand.UndoActivity
           
 

Methods in org.jhotdraw.standard that return Undoable
 Undoable AbstractTool.getUndoActivity()
           
 Undoable AbstractHandle.getUndoActivity()
           
 Undoable AbstractCommand.getUndoActivity()
           
 

Methods in org.jhotdraw.standard with parameters of type Undoable
 void AbstractTool.setUndoActivity(Undoable newUndoActivity)
           
 void AbstractHandle.setUndoActivity(Undoable newUndoableActivity)
           
 void AbstractCommand.setUndoActivity(Undoable newUndoableActivity)
           
 

Uses of Undoable in org.jhotdraw.util
 

Classes in org.jhotdraw.util that implement Undoable
 class UndoableAdapter
          Most basic implementation for an Undoable activity.
 class UndoRedoActivity
          An UndoRedoActivity can be used to turn a UndoActivity into a RedoActivity.
 

Methods in org.jhotdraw.util that return Undoable
static Undoable UndoRedoActivity.createUndoRedoActivity(Undoable toBeReversed)
           
 Undoable UndoRedoActivity.getReversedActivity()
           
 Undoable UndoableTool.getUndoActivity()
           
 Undoable UndoableHandle.getUndoActivity()
           
 Undoable UndoableCommand.getUndoActivity()
           
 Undoable Command.getUndoActivity()
           
 Undoable UndoManager.popRedo()
          Throw NoSuchElementException if there is none
 Undoable UndoManager.popUndo()
          Throw NoSuchElementException if there is none
 

Methods in org.jhotdraw.util with parameters of type Undoable
static Undoable UndoRedoActivity.createUndoRedoActivity(Undoable toBeReversed)
           
 void UndoManager.pushRedo(Undoable redoActivity)
           
 void UndoManager.pushUndo(Undoable undoActivity)
           
 void UndoableTool.setUndoActivity(Undoable newUndoableActivity)
           
 void UndoableHandle.setUndoActivity(Undoable newUndoableActivity)
           
 void UndoableCommand.setUndoActivity(Undoable newUndoableActivity)
           
 void Command.setUndoActivity(Undoable newUndoableActivity)