home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / awt / dnd / DnDConstants.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  378 b   |  14 lines

  1. package java.awt.dnd;
  2.  
  3. public final class DnDConstants {
  4.    public static final int ACTION_NONE = 0;
  5.    public static final int ACTION_COPY = 1;
  6.    public static final int ACTION_MOVE = 2;
  7.    public static final int ACTION_COPY_OR_MOVE = 3;
  8.    public static final int ACTION_LINK = 1073741824;
  9.    public static final int ACTION_REFERENCE = 1073741824;
  10.  
  11.    private DnDConstants() {
  12.    }
  13. }
  14.