diff options
Diffstat (limited to 'src/com/vaadin/shared/ui/checkbox/CheckBoxState.java')
-rw-r--r-- | src/com/vaadin/shared/ui/checkbox/CheckBoxState.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/com/vaadin/shared/ui/checkbox/CheckBoxState.java b/src/com/vaadin/shared/ui/checkbox/CheckBoxState.java new file mode 100644 index 0000000000..d43959327c --- /dev/null +++ b/src/com/vaadin/shared/ui/checkbox/CheckBoxState.java @@ -0,0 +1,19 @@ +/* +@VaadinApache2LicenseForJavaFiles@ + */ +package com.vaadin.shared.ui.checkbox; + +import com.vaadin.shared.AbstractFieldState; + +public class CheckBoxState extends AbstractFieldState { + private boolean checked = false; + + public boolean isChecked() { + return checked; + } + + public void setChecked(boolean checked) { + this.checked = checked; + } + +}
\ No newline at end of file |