blob: 39cf45c3fda42576180d7e565b312586cc502cf3 [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 java.net.URL;
import org.eclipse.core.internal.preferences.AbstractScope;
import org.eclipse.core.internal.runtime.InternalPlatform;
import org.eclipse.core.runtime.*;
import org.eclipse.osgi.service.datalocation.Location;
/**
* Object representing the configuration 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>
* Configuration preferences are stored on a per configuration basis in the
* platform's configuration area as specified by {@link Platform#getConfigurationLocation}.
* </p>
* <p>
* The path for preferences defined in the configuration scope hierarchy
* is as follows: <code>/configuration/&lt;qualifier&gt;</code>
* </p>
* @see Platform#getConfigurationLocation()
* @since 3.0
*/
public final class ConfigurationScope extends AbstractScope {
/**
* String constant (value of <code>"configuration"</code>) used for the
* scope name for the configuration preference scope.
*/
public static final String SCOPE = "configuration"; //$NON-NLS-1$
/*
* @see org.eclipse.core.runtime.preferences.IScopeContext#getName()
*/
public String getName() {
return SCOPE;
}
/*
* @see org.eclipse.core.runtime.preferences.IScopeContext#getLocation()
*/
public IPath getLocation() {
IPath result = null;
Location location = InternalPlatform.getDefault().getConfigurationLocation();
if (!location.isReadOnly()) {
URL url = location.getURL();
if (url != null) {
result = new Path(url.getFile());
if (result.isEmpty())
result = null;
}
}
return result;
}
}