Package com.saperion.ngc.events
Class DragStartedEvent
- java.lang.Object
-
- org.zkoss.zk.ui.event.Event
-
- com.saperion.ngc.events.DragStartedEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class DragStartedEvent extends org.zkoss.zk.ui.event.Event
Event fired when a component gets dragged.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DragStartedEvent(org.zkoss.zk.ui.Component target, boolean ctrlKey, boolean altKey, boolean shiftKey)
Instantiates a new drag started event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isWithAltKey()
boolean
isWithCtrlKey()
boolean
isWithShiftKey()
-
-
-
Constructor Detail
-
DragStartedEvent
public DragStartedEvent(org.zkoss.zk.ui.Component target, boolean ctrlKey, boolean altKey, boolean shiftKey)
Instantiates a new drag started event.- Parameters:
target
- the target componentctrlKey
- if ctrl key was pressedaltKey
- if alt key was pressedshiftKey
- if shift key was pressed
-
-