13a14,17 > import java.awt.Graphics; > import java.awt.Point; > import java.awt.Rectangle; > 15d18 < import java.awt.*; 42,43d44 < * @deprecated As of version 4.1, < * use invokeStart(x, y, drawingView) 47a49 > * @param view the handles container 49c51 < public void invokeStart(int x, int y, Drawing drawing); --- > public void invokeStart(int x, int y, DrawingView view); 54,55d55 < * @deprecated As of version 4.1, < * use invokeStart(x, y, drawingView) 58c58 < * @param view the handles container --- > * @deprecated As of version 4.1, use invokeStart(x, y, drawingView) 60,70c60 < public void invokeStart(int x, int y, DrawingView view); < < /** < * @deprecated As of version 4.1, < * use invokeStep(x, y, anchorX, anchorY, drawingView) < * < * Tracks a step of the interaction. < * @param dx x delta of this step < * @param dy y delta of this step < */ < public void invokeStep (int dx, int dy, Drawing drawing); --- > public void invokeStart(int x, int y, Drawing drawing); 81a72,80 > * Tracks a step of the interaction. > * @param dx x delta of this step > * @param dy y delta of this step > * @deprecated As of version 4.1, > * use invokeStep(x, y, anchorX, anchorY, drawingView) > */ > public void invokeStep (int dx, int dy, Drawing drawing); > > /** 90a90 > * Tracks the end of the interaction. 93,94d92 < * < * Tracks the end of the interaction. 117a116,119 > /** > * Returns an Undoable to be used by the Undo/Redo infrastructure. > * @return Undoable > */ 119a122,125 > /** > * Sets an Undoable to be used by the Undo/Redo infrastructure. > * @param newUndoableActivity > */ 120a127,132 > > /** > * Returns the preferred Cursor for this Handle. > * @return Cursor > */ > public Cursor getCursor();