1 package org.apache.ojb.tools.mapping.reversedb2.dnd2; 2 3 17 18 import java.awt.dnd.DnDConstants ; 19 20 24 public interface DnDWorkerConstants 25 { 26 29 public static final int NONE = DnDConstants.ACTION_NONE; 30 31 34 public static final int DRAG_COPY = DnDConstants.ACTION_COPY; 35 36 39 public static final int DRAG_MOVE = DnDConstants.ACTION_MOVE; 40 41 44 public static final int DRAG_LINK = DnDConstants.ACTION_LINK; 45 46 49 public static final int CLIP_COPY = 0xFE; 50 51 52 public static final int CLIP_CUT = 0xFF; 53 } 54 | Popular Tags |