home *** CD-ROM | disk | FTP | other *** search
- package java.awt.dnd;
-
- public final class DnDConstants {
- public static final int ACTION_NONE = 0;
- public static final int ACTION_COPY = 1;
- public static final int ACTION_MOVE = 2;
- public static final int ACTION_COPY_OR_MOVE = 3;
- public static final int ACTION_LINK = 1073741824;
- public static final int ACTION_REFERENCE = 1073741824;
-
- private DnDConstants() {
- }
- }
-