Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "FAQ What is a preference scope?"

 
m
Line 1: Line 1:
''
 
 
 
 
 
The preference service uses the notion of <i>preference scopes</i>
 
The preference service uses the notion of <i>preference scopes</i>
 
to describe the various areas where preferences can be saved.  The
 
to describe the various areas where preferences can be saved.  The
 
platform includes the following four preference scopes:
 
platform includes the following four preference scopes:
  
 +
* <i>Configuration scope</i>.  Preferences stored in this scope are shared by all workspaces that are launched using a particular configuration of Eclipse plug-ins. On a single-user installation, this serves to capture preferences that are common to all workspaces launched by that user. On a multi-user installation, these preferences are shared by all users of the configuration.
  
* <i>Configuration scope</i>.  Preferences stored in this scope are shared
+
* <i>Instance scope</i>.  Preferences in this scope are specific to a single Eclipse workspace. The old API method <tt>getPluginPreferences</tt> on <tt>Plugin</tt> stores its preferences at this scope.
by all workspaces that are launched using a particular configuration
+
of Eclipse plug-ins. On a single-user installation, this serves to capture
+
preferences that are common to all workspaces launched by that user. On
+
a multi-user installation, these preferences are shared by all users of the configuration.</li>
+
 
+
 
+
 
+
 
+
* <i>Instance scope</i>.  Preferences in this scope are specific  
+
to a single Eclipse workspace. The old API method <tt>getPluginPreferences</tt>  
+
on <tt>Plugin</tt> stores its preferences at this scope.</li>
+
 
+
 
+
 
+
 
+
* <i>Default scope</i>. This scope is not stored on disk at all but can be used
+
to store default values for all your keys.  When values are not found
+
in other scopes, the default scope is consulted last to provide
+
reasonable default values.</li>
+
 
+
 
+
 
+
 
+
* <i>Project scope</i>.  This scope
+
stores values that are specific to a single project in your workspace, such as
+
code formatter and compiler settings. Note that this scope is provided by the
+
<tt>org.eclipse.core.resources</tt> plug-in, which is not included in the Eclipse
+
Rich Client Platform.  This scope will not exist in
+
applications that don&#146;t explicitly include the <tt>resources</tt> plug-in.</li>
+
 
+
 
+
  
 +
* <i>Default scope</i>. This scope is not stored on disk at all but can be used to store default values for all your keys.  When values are not found in other scopes, the default scope is consulted last to provide reasonable default values.
  
 +
* <i>Project scope</i>.  This scope stores values that are specific to a single project in your workspace, such as code formatter and compiler settings. Note that this scope is provided by the  <tt>org.eclipse.core.resources</tt> plug-in, which is not included in the Eclipse Rich Client Platform.  This scope will not exist in  applications that don&#146;t explicitly include the <tt>resources</tt> plug-in.
  
 
Plug-ins can also define their own preference scopes, using the  
 
Plug-ins can also define their own preference scopes, using the  
Line 48: Line 16:
 
loaded and stored.  However, for most clients, the four built in scopes
 
loaded and stored.  However, for most clients, the four built in scopes
 
will be sufficient.
 
will be sufficient.
 
 
 
 
 
  
 
== See Also: ==
 
== See Also: ==
 
+
*[[FAQ_What_is_a_configuration%3F]]
 
+
*[[FAQ_How_do_I_use_the_preference_service%3F]]
[[FAQ_What_is_a_configuration%3F]]
+
 
+
 
+
[[FAQ_How_do_I_use_the_preference_service%3F]]
+
  
 
<hr><font size=-2>This FAQ was originally published in [http://www.eclipsefaq.org Official Eclipse 3.0 FAQs]. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the [http://www.eclipse.org/legal/epl-v10.html Eclipse Public License v1.0].</font>
 
<hr><font size=-2>This FAQ was originally published in [http://www.eclipsefaq.org Official Eclipse 3.0 FAQs]. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the [http://www.eclipse.org/legal/epl-v10.html Eclipse Public License v1.0].</font>

Revision as of 22:04, 29 May 2006

The preference service uses the notion of preference scopes to describe the various areas where preferences can be saved. The platform includes the following four preference scopes:

  • Configuration scope. Preferences stored in this scope are shared by all workspaces that are launched using a particular configuration of Eclipse plug-ins. On a single-user installation, this serves to capture preferences that are common to all workspaces launched by that user. On a multi-user installation, these preferences are shared by all users of the configuration.
  • Instance scope. Preferences in this scope are specific to a single Eclipse workspace. The old API method getPluginPreferences on Plugin stores its preferences at this scope.
  • Default scope. This scope is not stored on disk at all but can be used to store default values for all your keys. When values are not found in other scopes, the default scope is consulted last to provide reasonable default values.
  • Project scope. This scope stores values that are specific to a single project in your workspace, such as code formatter and compiler settings. Note that this scope is provided by the org.eclipse.core.resources plug-in, which is not included in the Eclipse Rich Client Platform. This scope will not exist in applications that don&#146;t explicitly include the resources plug-in.

Plug-ins can also define their own preference scopes, using the org.eclipse.core.runtime.preference extension point. If you define your own scope, you can control how and where your preferences are loaded and stored. However, for most clients, the four built in scopes will be sufficient.

See Also:


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top