Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0f29993120fce0ba6a20a25a8fa1cd6f88d6e21e (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
/*******************************************************************************
 * Copyright (c) 2011 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.tm.te.tcf.locator.interfaces.preferences;

import java.io.File;

/**
 * The locator model bundle preference key identifiers.
 */
public interface IPreferenceKeys {
	/**
	 * Common prefix for all core preference keys
	 */
	public final String PREFIX = "tcf.locator.core."; //$NON-NLS-1$

	/**
	 * If set to <code>true</code>, peers having the same agent id are filtered.
	 */
	public final String PREF_FILTER_BY_AGENT_ID = PREFIX + "model.filter.agentid"; //$NON-NLS-1$

	/**
	 * If set, the preference is defining a list of root locations where
	 * to lookup the static peer definitions. The single entries in the list
	 * are separated by the system dependent path separator character.
	 * <p>
	 * <b>Note:</b> If set, the given list of root locations replaces the default
	 * list of root locations.
	 *
	 * @see File#pathSeparatorChar
	 */
	public final String PREF_STATIC_PEERS_ROOT_LOCATIONS = PREFIX + "model.peers.rootLocations"; //$NON-NLS-1$
}

Back to the top