Package com.hybris.cockpitng.dnd
Class DropOperationData<DRAGGED,TARGET,MODIFIED>
- java.lang.Object
-
- com.hybris.cockpitng.dnd.DropOperationData<DRAGGED,TARGET,MODIFIED>
-
- Type Parameters:
DRAGGED- dragged objects type.TARGET- target object type.MODIFIED- modified objects type.
public class DropOperationData<DRAGGED,TARGET,MODIFIED> extends java.lang.ObjectResponsible for storing objects used in "single" drop operation. Single means that only one object is modified.
-
-
Constructor Summary
Constructors Constructor Description DropOperationData(DRAGGED dragged, TARGET target, DragAndDropContext context)DropOperationData(DRAGGED dragged, TARGET target, MODIFIED modified, DragAndDropContext context, java.lang.String notificationKey)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DragAndDropContextgetContext()DRAGGEDgetDragged()MODIFIEDgetModified()java.lang.StringgetNotificationKey()TARGETgetTarget()
-
-
-
Constructor Detail
-
DropOperationData
public DropOperationData(DRAGGED dragged, TARGET target, MODIFIED modified, DragAndDropContext context, java.lang.String notificationKey)
-
DropOperationData
public DropOperationData(DRAGGED dragged, TARGET target, DragAndDropContext context)
-
-
Method Detail
-
getDragged
public DRAGGED getDragged()
-
getTarget
public TARGET getTarget()
-
getModified
public MODIFIED getModified()
-
getContext
public DragAndDropContext getContext()
-
getNotificationKey
public java.lang.String getNotificationKey()
-
-