home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &… the Search for Life CD 3 / 0_CD-ROM.iso / install / jre1_3 / lib / rt.jar / java / awt / dnd / peer / DragSourceContextPeer.class (.txt) next >
Encoding:
Java Class File  |  1979-12-31  |  407 b   |  18 lines

  1. package java.awt.dnd.peer;
  2.  
  3. import java.awt.Cursor;
  4. import java.awt.Image;
  5. import java.awt.Point;
  6. import java.awt.dnd.DragSourceContext;
  7. import java.awt.dnd.InvalidDnDOperationException;
  8.  
  9. public interface DragSourceContextPeer {
  10.    void startDrag(DragSourceContext var1, Cursor var2, Image var3, Point var4) throws InvalidDnDOperationException;
  11.  
  12.    Cursor getCursor();
  13.  
  14.    void setCursor(Cursor var1) throws InvalidDnDOperationException;
  15.  
  16.    void transferablesFlavorsChanged();
  17. }
  18.