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

import com.vaadin.ui.Component;

public interface ComponentTransferable extends Transferable {

    /**
     * @return the component that started the drag operation
     */
    public Component getSourceComponent();

}