diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2016-07-19 14:57:05 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2016-08-05 10:19:45 +0300 |
commit | 69f703100ed57720672467e6e53319781cb8ebc9 (patch) | |
tree | 0af17e22a90e7891f296caf74426df008e7533b4 /documentation/components/components-checkbox.asciidoc | |
parent | befaa39cc0637028688f4bfb5d7f6e824ea9a1af (diff) | |
download | vaadin-framework-69f703100ed57720672467e6e53319781cb8ebc9.tar.gz vaadin-framework-69f703100ed57720672467e6e53319781cb8ebc9.zip |
BoV: Components/Button,CheckBox: Listener API updates
Change-Id: I266bf780d24e411b17d449ff5f9ce880fad53d36
Diffstat (limited to 'documentation/components/components-checkbox.asciidoc')
-rw-r--r-- | documentation/components/components-checkbox.asciidoc | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/documentation/components/components-checkbox.asciidoc b/documentation/components/components-checkbox.asciidoc index 570a3ee083..cf00fd1b61 100644 --- a/documentation/components/components-checkbox.asciidoc +++ b/documentation/components/components-checkbox.asciidoc @@ -20,12 +20,10 @@ and check box groups with the [classname]#OptionGroup# component in multiple selection mode, as described in <<dummy/../../../framework/components/components-optiongroup#components.optiongroup,"OptionGroup">>. -Clicking on a check box will change its state. The state is a -[classname]#Boolean# property that you can set with the [methodname]#setValue()# -method and obtain with the [methodname]#getValue()# method of the -[classname]#Property# interface. Changing the value of a check box will cause a -[classname]#ValueChangeEvent#, which can be handled by a -[classname]#ValueChangeListener#. +Clicking on a check box will change its state. The state is a [classname]#Boolean# +property that you can set with the [methodname]#setValue()# method and obtain with +the [methodname]#getValue()# method. Changing the value of a check box will cause +a [classname]#ValueChangeEvent#, which can be handled by a [classname]#ValueChangeListener#. [source, java] @@ -35,10 +33,10 @@ CheckBox checkbox2 = new CheckBox("Box with a Check"); checkbox2.setValue(true); -checkbox1.addValueChangeListener(event -> // Java 8 +checkbox1.addValueChangeListener(event -> checkbox2.setValue(! checkbox1.getValue())); -checkbox2.addValueChangeListener(event -> // Java 8 +checkbox2.addValueChangeListener(event -> checkbox1.setValue(! checkbox2.getValue())); ---- |