Skip to main content
summaryrefslogtreecommitdiffstats
blob: 14a039e8cf4c593675d4a7610b7538462b9322ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*****************************************************************************
 * Copyright (c) 2015 CEA LIST and others.
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   Nicolas FAUVERGUE (ALL4TEC) nicolas.fauvergue@all4tec.net - Initial API and implementation
 *   
 *****************************************************************************/

package org.eclipse.papyrus.infra.nattable.utils;

/**
 * This allows to define the constants for the user action.
 */
public interface UserActionConstants {

	/**
	 * The integer representing the undefined user action.
	 */
	public static final int UNDEFINED_USER_ACTION = -1;

	/**
	 * The integer representing the replace user action.
	 */
	public static final int REPLACE_USER_ACTION = 0;

	/**
	 * The integer representing the add user action.
	 */
	public static final int ADD_USER_ACTION = 1;

	/**
	 * The integer representing the skip user action.
	 */
	public static final int SKIP_USER_ACTION = 2;
	
	/**
	 * The integer representing the cancel user action.
	 */
	public static final int CANCEL_USER_ACTION = 3;
	
}

Back to the top