summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/event/Transferable.java
blob: c2b75630cb4deeb19e5be1afe409675687494192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.vaadin.event;

import java.util.Collection;

import com.vaadin.ui.Component;

public interface Transferable {

    public Object getData(String dataFlawor);

    public void setData(String dataFlawor, Object value);

    public Collection<String> getDataFlawors();

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

}