summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/event/dd/DropTargetDetails.java
blob: 770d58d9d3f481e8953b84939bf8e5440e8a9eba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
@ITMillApache2LicenseForJavaFiles@
 */
package com.vaadin.event.dd;

import java.io.Serializable;

import com.vaadin.ui.Tree.TreeDropTargetDetails;

/**
 * DropTargetDetails wraps drop target related information about
 * {@link DragAndDropEvent}.
 * <p>
 * When a DropTargetDetails object is used in {@link DropHandler} it is often
 * preferable to cast the DropTargetDetail to an implementation provided by
 * DropTarget like {@link TreeDropTargetDetails}. They often provide better
 * typed, drop target specific API.
 * 
 * @since 6.3
 * 
 */
public interface DropTargetDetails extends Serializable {

    /**
     * Gets target data associated to given string key
     * 
     * @param key
     * @return
     */
    public Object getData(String key);

    /**
     * @return the drop target on which the {@link DragAndDropEvent} happened.
     */
    public DropTarget getTarget();

}