PageRenderTime 38ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/activation/at/dasz/KolabDroid/glue/Transferable.java

http://kolab-android.googlecode.com/
Java | 13 lines | 9 code | 4 blank | 0 comment | 0 complexity | 863b1067c86fc83b5f4aa9d836d1fe48 MD5 | raw file
Possible License(s): GPL-3.0, Apache-2.0
  1. package at.dasz.KolabDroid.glue;
  2. import java.io.IOException;
  3. public interface Transferable
  4. {
  5. DataFlavor[] getTransferDataFlavors();
  6. boolean isDataFlavorSupported(DataFlavor flavor);
  7. Object getTransferData(DataFlavor flavor)
  8. throws UnsupportedFlavorException, IOException;
  9. }