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 "Orion/Documentation/Developer Guide/Plugging into the settings page"

(Overview)
(See also)
Line 6: Line 6:
  
 
== See also ==
 
== See also ==
[[Orion/Configuration services|Configuration services]]
+
* [[Orion/Developer Guide/Configuration services|Configuration services]]

Revision as of 14:44, 7 September 2012

Overview

Orion plugins can define settings. A setting defines some persistent information that is provided to one of the plugins's services. Defined settings appear on Orion's Settings page, and their values can be changed using an automatically-generated UI. Each setting has a unique identifier called a PID (persistent identifier), as well as metatype information. The metatype defines the "shape" of the setting, specifically what named properties appear in the setting and what data type they have (string, boolean, number, etc). The Settings page uses this metatype information to generate appropriate UI widgets (for example, text field, checkbox, etc).

orion.core.setting

Contributes a setting.

See also

Back to the top