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 "Scout/Concepts/Type of Data"

(New page: Scout contains several implementation of {{ScoutLink|Concepts|Field|fields}} and {{ScoutLink|Concepts|Column|columns}} to cover the most common types of data that are used in business appl...)
 
m (ScoutPage Template)
Line 1: Line 1:
 +
{{ScoutPage|cat=Concepts}}
 +
 
Scout contains several implementation of {{ScoutLink|Concepts|Field|fields}} and {{ScoutLink|Concepts|Column|columns}} to cover the most common types of data that are used in business application. These implementations provide formatting and parsing mechanisms (taking care of the locale settings). In some cases a picker is also associated to the field  to improve the user experience.  
 
Scout contains several implementation of {{ScoutLink|Concepts|Field|fields}} and {{ScoutLink|Concepts|Column|columns}} to cover the most common types of data that are used in business application. These implementations provide formatting and parsing mechanisms (taking care of the locale settings). In some cases a picker is also associated to the field  to improve the user experience.  
  

Revision as of 17:56, 9 November 2010

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

Scout contains several implementation of The Scout documentation has been moved to https://eclipsescout.github.io/. and The Scout documentation has been moved to https://eclipsescout.github.io/. to cover the most common types of data that are used in business application. These implementations provide formatting and parsing mechanisms (taking care of the locale settings). In some cases a picker is also associated to the field to improve the user experience.

For the developer of a scout application, this also enables to manipulate the value of the field with the corresponding Java Object (no need to cast and to parse the text input).

Types

Text

Integer

Long

Double

Date

Time

Boolean

Smart<T>

This is not a Java Data type. Smart is a scout concept to designate a smart association realized with The Scout documentation has been moved to https://eclipsescout.github.io/. or The Scout documentation has been moved to https://eclipsescout.github.io/.. The Key of type T can be any Serializable java Object (Long, String, …). We speak from a Smart association, because there is more than just a text (display text) associated to the key (Icon, Color, TooltipText...)

See also

Back to the top