blob: 2b7ac6696e0e6e85e53904ee209a452936f2827a (
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
|
package com.vaadin.event;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import com.vaadin.ui.Component;
public class ComponentTransferable implements Transferable {
private Map<String, Object> rawVariables = new HashMap<String, Object>();
private Component sourceComponent;
public ComponentTransferable(Component sourceComponent,
Map<String, Object> rawVariables) {
this.sourceComponent = sourceComponent;
this.rawVariables = rawVariables;
}
public Component getSourceComponent() {
return sourceComponent;
}
public Object getData(String dataFlawor) {
return rawVariables.get(dataFlawor);
}
public void setData(String dataFlawor, Object value) {
rawVariables.put(dataFlawor, value);
}
public Collection<String> getDataFlawors() {
return rawVariables.keySet();
}
}
|