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(); }