コード例 #1
0
 /**
  * Replaces the handle's default DragEditPartsTracker with the extended DragEditPartsTrackerEx
  *
  * @param handle
  */
 protected void replaceHandleDragEditPartsTracker(Handle handle) {
   if (handle instanceof AbstractHandle) {
     AbstractHandle h = (AbstractHandle) handle;
     h.setDragTracker(new DragEditPartsTrackerEx(getHost()));
   }
 }