2,2c2,2 < * @(#)AbstractHandle.java 5.2 --- > * @(#)AbstractHandle.java 3a4,9 > * Project: JHotdraw - a GUI framework for technical drawings > * http://www.jhotdraw.org > * http://jhotdraw.sourceforge.net > * Copyright: © by the original author(s) and all contributors > * License: Lesser GNU Public License (LGPL) > * http://www.opensource.org/licenses/lgpl-license.html 8a15,15 > import CH.ifa.draw.util.Undoable; 12,12c19,19 < * AbstractHandle provides defaulf implementation for the --- > * AbstractHandle provides defaulf implementation for the Handle interface. 13,13d19 < * Handle interface. 16a23,24 > * > * @version <$CURRENT_VERSION$> 24a33,33 > private Undoable myUndoableActivity; 50,53d58 < * @ deprecated As of version 4.1, < * use invokeStart(x, y, drawingView) < * Tracks the start of the interaction. The default implementation < * does nothing. 140,140d144 < } 141a146,148 > public Undoable getUndoActivity() { > return myUndoableActivity; > } 142a150,153 > public void setUndoActivity(Undoable newUndoableActivity) { > myUndoableActivity = newUndoableActivity; > } > }