/******************************************************************************* * 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$ }