Source code: com/memoire/dnd/DndModes.java
1 /**
2 * @modification $Date: 2001/12/03 16:28:08 $
3 * @statut unstable
4 * @file DndModes.java
5 * @version 0.36
6 * @author Guillaume Desnoix
7 * @email guillaume@desnoix.com
8 * @license GNU General Public License 2 (GPL2)
9 * @copyright 1998-2001 Guillaume Desnoix
10 */
11
12 package com.memoire.dnd;
13 import com.memoire.dnd.*;
14
15
16 public interface DndModes
17 {
18 int INSERT_AT_BEGIN =0;
19 int INSERT_AT_END =1;
20 int INSERT_AT_CURSOR =2;
21 int INSERT_AT_CARET =3;
22 int INSERT_BEFORE_SELECTION=4;
23 int INSERT_AFTER_SELECTION =5;
24 int REPLACE_SELECTION =6;
25 int REPLACE_ALL =7;
26 }