summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/event/Transferable.java
blob: 379bcde9a4c74b36ee51dca5b019aed78d9f75f9 (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
/*
@ITMillApache2LicenseForJavaFiles@
 */
package com.vaadin.event;

import java.util.Collection;

import com.vaadin.ui.Component;

/**
 * TODO Javadoc!
 * 
 * @since 6.3
 */
public interface Transferable {

    public Object getData(String dataFlavor);

    public void setData(String dataFlavor, Object value);

    public Collection<String> getDataFlavors();

    /**
     * @return the component that created the Transferable
     */
    public Component getSourceComponent();

}