blob: 8b6dac368e24a576d39b819f40e363e3193a710b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.runtime.preferences;
import org.eclipse.core.internal.preferences.AbstractScope;
import org.eclipse.core.runtime.IPath;
/**
* Object representing the instance scope in the Eclipse preferences
* hierarchy. Can be used as a context for searching for preference
* values (in the IPreferencesService APIs) or for determining the
* correct preference node to set values in the store.
* <p>
* Instance preferences are stored on a per instance basis in the
* platform's instance area as specified by <code>IPlatform#getInstanceLocation</code>.
* </p><p>
* The path for preferences defined in the instance scope hierarchy
* is as follows: <code>/instance/&lt;qualifier&gt;</code>
* </p>
* @see org.eclipse.core.runtime.IPlatform#getInstanceLocation()
* @since 3.0
*/
public final class InstanceScope extends AbstractScope {
/**
* String constant (value of <code>"instance"</code>) used for the
* scope name for the instance preference scope.
*/
public static final String SCOPE = "instance"; //$NON-NLS-1$
/*
* @see org.eclipse.core.runtime.preferences.IScopeContext#getLocation()
*/
public IPath getLocation() {
// Return null. The instance location usually corresponds to the state
// location of the bundle and we don't know what bundle we are dealing with.
return null;
}
/*
* @see org.eclipse.core.runtime.preferences.IScopeContext#getName()
*/
public String getName() {
return SCOPE;
}
}