Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f1b72f1855cce3b65020da2bae7a2e3fdd0a6e1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.etrice.generator.ui.preferences;

/**
 * Constant definitions for plug-in preferences
 */
public class PreferenceConstants {

	public static final String GEN_DIR = "GenerationDirectory";
	public static final String GEN_DOC_DIR = "GeneratedDocuDirectory";
	public static final String GEN_USE_TRANSLATION = "GenerateUsingTranslation";
	
	/**
	 * The kind of build with the two possibilities {@link #MAVEN} and {@link #JDT}
	 */
	public static final String BUILD_KIND = "BuildKind";
	public static final String MAVEN = "Maven";
	public static final String JDT = "JDT";
}

Back to the top