You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Transferable.java 484B

12345678910111213141516171819202122232425262728
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.event;
  5. import java.util.Collection;
  6. import com.vaadin.ui.Component;
  7. /**
  8. * TODO Javadoc!
  9. *
  10. * @since 6.3
  11. */
  12. public interface Transferable {
  13. public Object getData(String dataFlavor);
  14. public void setData(String dataFlavor, Object value);
  15. public Collection<String> getDataFlavors();
  16. /**
  17. * @return the component that created the Transferable
  18. */
  19. public Component getSourceComponent();
  20. }