1 7 8 package java.awt.dnd; 9 10 16 17 public final class DnDConstants { 18 19 private DnDConstants() {} 21 24 public static final int ACTION_NONE = 0x0; 25 26 29 public static final int ACTION_COPY = 0x1; 30 31 34 public static final int ACTION_MOVE = 0x2; 35 36 40 public static final int ACTION_COPY_OR_MOVE = ACTION_COPY | ACTION_MOVE; 41 42 57 58 public static final int ACTION_LINK = 0x40000000; 59 60 64 public static final int ACTION_REFERENCE = ACTION_LINK; 65 66 } 67 68 69 | Popular Tags |