Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 608f91c7c61157f270f634d412dffccf28126c21 (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
/*****************************************************************************
 * Copyright (c) 2015 CEA LIST.
 *
 *
 * 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:
 *  Patrick Tessier (CEA LIST) patrick.tessier@cea.fr - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.requirements.reqif.preference;

/**
 * Constant definitions for the reqif plug-in preferences
 */
public class ReqIFPreferenceConstants {

	
	/**
	 * the constant user kind name
	 */
	public static final String USER_KIND = "USER_KIND";
	/**
	 * the constant for advanced user
	 */
	public static final String ADVANCED_USER="ADVANCED_USER";
	/**
	 * the constant for the simple user
	 */
	public static final String SIMPLE_USER="SIMPLE_USER";
	
}

Back to the top