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

Scout/Concepts/CheckboxField


Scout
Wiki Home
Website
DownloadGit
Community
ForumsBlogTwitterG+
Bugzilla
Bugzilla


Checkbox field (or Boolean Field) is specific type of value field to represent Boolean.

  • implements: I obj.pngIBooleanField (or convenience I obj.pngICheckBox )
  • extends: C obj.pngAbstractBooleanField (or convenience C obj.pngAbstractCheckBox )

Description

Among the different types of data supported by scout, the BooleanField is made to represent Boolean. For example the functions setValue(value) and getValue() use directly Boolean.

For the user, the field is a checkbox that can be clicked.

Screenshot

Type RAP SWT Swing Swing Rayo
Checked Scout 3.8 BooleanField checked RAP.png Scout 3.8 BooleanField checked SWT.png Scout 3.8 BooleanField checked Swing.png Scout 3.8 BooleanField checked Swing Rayo.png
Unchecked Scout 3.8 BooleanField unchecked RAP.png Scout 3.8 BooleanField unchecked SWT.png Scout 3.8 BooleanField unchecked Swing.png Scout 3.8 BooleanField unchecked Swing Rayo.png

Properties

Defined with getConfiguredXxxxxx() methods.

See also the Field and the Value field pages for the properties that all fields have in common.


Events

Defined with execXxxxxx() methods.

See also the Field and the value field pages for the events that all fields have in common.


See Also

Back to the top