Java Code Examples for com.vaadin.shared.MouseEventDetails#deSerialize()

The following examples show how to use com.vaadin.shared.MouseEventDetails#deSerialize() . 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: LayoutBoundTransferable.java    From cuba with Apache License 2.0 4 votes vote down vote up
/**
 * @return the mouse down event that started the drag and drop operation
 */
public MouseEventDetails getMouseDownEvent() {
    return MouseEventDetails.deSerialize(
            (String) getData(Constants.TRANSFERABLE_DETAIL_MOUSEDOWN));
}
 
Example 2
Source File: DDHorizontalLayout.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize(
            getData(Constants.DROP_DETAIL_MOUSE_EVENT).toString());
}
 
Example 3
Source File: DDVerticalLayout.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize(
            (String) getData(Constants.DROP_DETAIL_MOUSE_EVENT));
}
 
Example 4
Source File: DDCssLayout.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize(
            getData(Constants.DROP_DETAIL_MOUSE_EVENT).toString());
}
 
Example 5
Source File: DDFormLayout.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize(
            (String) getData(Constants.DROP_DETAIL_MOUSE_EVENT));
}
 
Example 6
Source File: DDVerticalSplitPanel.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize(
            (String) getData(Constants.DROP_DETAIL_MOUSE_EVENT));
}
 
Example 7
Source File: DDHorizontalSplitPanel.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize(
            (String) getData(Constants.DROP_DETAIL_MOUSE_EVENT));
}
 
Example 8
Source File: DDHorizontalLayout.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize(
            getData(Constants.DROP_DETAIL_MOUSE_EVENT).toString());
}
 
Example 9
Source File: DDPanel.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize(
            (String) getData(Constants.DROP_DETAIL_MOUSE_EVENT));
}
 
Example 10
Source File: DDGridLayout.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize(
            getData(Constants.DROP_DETAIL_MOUSE_EVENT).toString());
}
 
Example 11
Source File: DDVerticalLayout.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize(
            (String) getData(Constants.DROP_DETAIL_MOUSE_EVENT));
}
 
Example 12
Source File: AbsoluteLayoutTargetDetails.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize(
            (String) getData(Constants.DROP_DETAIL_MOUSE_EVENT));
}
 
Example 13
Source File: AccordionTargetDetails.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize((String) getData("mouseEvent"));
}
 
Example 14
Source File: DDTabSheet.java    From cuba with Apache License 2.0 2 votes vote down vote up
/**
 * Some details about the mouse event
 * 
 * @return details about the actual event that caused the event details.
 *         Practically mouse move or mouse up.
 */
public MouseEventDetails getMouseEvent() {
    return MouseEventDetails.deSerialize(
            (String) getData(Constants.DROP_DETAIL_MOUSE_EVENT));
}