Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Scout/Concepts/GetConfigured Methods

< Scout‎ | Concepts
Revision as of 16:00, 17 August 2010 by Dev.jmini.fr (Talk | contribs) (New page: {{ScoutPage|cat=Concepts}} == Description == Properties can be configured on a lot of elements (Page, Form, Fields, Table, Columns ...). {{ScoutLink|SDK|name=Scout SDK}} with the {{ScoutL...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The Scout documentation has been moved to https://eclipsescout.github.io/.

Description

Properties can be configured on a lot of elements (Page, Form, Fields, Table, Columns ...). The Scout documentation has been moved to https://eclipsescout.github.io/. with the The Scout documentation has been moved to https://eclipsescout.github.io/. offers a manner to configure theses properties very quickly.

In the code, a property is defined with special getter functions:

 @Override
 protected ... getConfiguredXxxxxxx() {
   return /*the value of the property*/
 }

The Scout framework read the configured properties during the initialization, and adapt the behavior of the object depending to its configuration.

Often the properties can also be set dynamically with the corresponding setter [setXxxxxxx()]. To access the properties you can use the getter [getXxxxxxx()]. There should be no need to call getConfiguredXxxxxxx() function directly.


See Also

Back to the top