1 package org.apache.ojb.tools.mapping.reversedb2.dnd2; 2 3 17 18 import java.awt.Component ; 19 import java.awt.Image ; 20 import java.awt.datatransfer.Transferable ; 21 22 27 public interface DragCopyCutWorkerInterface 28 { 29 36 public Transferable getTransferable(Component c); 37 38 43 public int getAcceptableActions(Component c); 44 45 51 public void exportStarted(Component c, int action); 52 53 59 public void exportDone(Component c, int action); 60 61 62 70 public Image getDragImage(Component c, Transferable t, int action); 71 72 } 73 | Popular Tags |