Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: bfde01541571b6b86cb7e4e90be6fff477832c64 (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) 2012, 2013 Wind River Systems, Inc. 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:
 * Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.tcf.ui.internal.preferences;

/**
 * The constants for the preferences.
 */
public interface IPreferenceKeys {
	/**
	 * Common prefix for all preference keys
	 */
	public final String PREFIX = "te.tcf.ui."; //$NON-NLS-1$

	/**
	 * Preference key to access the flag to hide dynamic target discovery content extension.
	 */
	public static final String PREF_HIDE_DYNAMIC_TARGET_DISCOVERY_EXTENSION = "org.eclipse.tcf.te.tcf.ui.navigator.content.hide"; //$NON-NLS-1$

	/**
	 * Preference key to access the flag to activate the current user filter on first launch.
	 */
	public static final String PREF_ACTIVATE_CURRENT_USER_FILTER = PREFIX + "model.currentUserFilter.activate"; //$NON-NLS-1$

	/**
	 * Preference key to allow target path for module load.
	 */
	public static final String PREF_OPEN_EDITOR_ON_DEFAULT_CONTEXT_CHANGE = "org.eclipse.tcf.te.tcf.ui.defaultcontext.open.editor"; //$NON-NLS-1$
}

Back to the top