summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/event/dd/DropTargetDetailsImpl.java
blob: 8a607395c0182d1cd58f67c5b675ef0a6d10060d (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
package com.vaadin.event.dd;

import java.util.HashMap;
import java.util.Map;

import com.vaadin.terminal.gwt.server.DragAndDropService;

/**
 * TODO Javadoc
 * 
 * @since 6.3
 * 
 */
public class DropTargetDetailsImpl implements DropTargetDetails {

    private HashMap<String, Object> data = new HashMap<String, Object>();

    public DropTargetDetailsImpl(Map<String, Object> rawDropData) {
        data.putAll(rawDropData);
    }

    public Object getData(String key) {
        return data.get(key);
    }

    public Object setData(String key, Object value) {
        return data.put(key, value);
    }

    public DropTarget getTarget() {
        return (DropTarget) data.get(DragAndDropService.DROPTARGET_KEY);
    }

}