aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/event/Transferable.java
blob: 5ce4adfb8fed7fb71386214c64012e721baa80ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.vaadin.event;

import java.util.Collection;

public interface Transferable {

    public Object getData(String dataFlawor);

    public void setData(String dataFlawor, Object value);

    public Collection<String> getDataFlawors();

}