org.eclipse.gef.handles.MoveHandle Java Examples
The following examples show how to use
org.eclipse.gef.handles.MoveHandle.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CrossflowTextNonResizableEditPolicy.java From scava with Eclipse Public License 2.0 | 5 votes |
/** * @generated */ protected List createSelectionHandles() { MoveHandle moveHandle = new MoveHandle((GraphicalEditPart) getHost()); moveHandle.setBorder(null); moveHandle.setDragTracker(new DragEditPartsTrackerEx(getHost())); return Collections.singletonList(moveHandle); }
Example #2
Source File: ProcessTextNonResizableEditPolicy.java From bonita-studio with GNU General Public License v2.0 | 5 votes |
/** * @generated */ protected List createSelectionHandles() { MoveHandle moveHandle = new MoveHandle((org.eclipse.gef.GraphicalEditPart) getHost()); moveHandle.setBorder(null); moveHandle.setDragTracker(new DragEditPartsTrackerEx(getHost())); return Collections.singletonList(moveHandle); }