You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CheckBoxState.java 373B

12345678910111213141516171819
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.shared.ui.checkbox;
  5. import com.vaadin.shared.AbstractFieldState;
  6. public class CheckBoxState extends AbstractFieldState {
  7. private boolean checked = false;
  8. public boolean isChecked() {
  9. return checked;
  10. }
  11. public void setChecked(boolean checked) {
  12. this.checked = checked;
  13. }
  14. }