Package com._1c.g5.v8.dt.erd.ui.handlers
Interface IDropEntitiesHandler
-
- All Known Implementing Classes:
DropEntitiesHandler
public interface IDropEntitiesHandler
Interface for drop entities handlers. Instances of this class should processdropEvent
received fromsetDropEvent(DropTargetEvent)
method inexecute(ErdEditor)
method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(ErdEditor editor)
Executes drop action.void
setDropEvent(org.eclipse.swt.dnd.DropTargetEvent dropEvent)
Sets drop event.
-
-
-
Method Detail
-
setDropEvent
void setDropEvent(org.eclipse.swt.dnd.DropTargetEvent dropEvent)
Sets drop event.- Parameters:
dropEvent
- the dropEvent to set. Can't benull
.
-
execute
void execute(ErdEditor editor)
Executes drop action.- Parameters:
editor
- - editor to execute action. Can't benull
.
-
-