aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/shared/ui/checkbox/CheckBoxState.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/shared/ui/checkbox/CheckBoxState.java')
-rw-r--r--src/com/vaadin/shared/ui/checkbox/CheckBoxState.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/com/vaadin/shared/ui/checkbox/CheckBoxState.java b/src/com/vaadin/shared/ui/checkbox/CheckBoxState.java
deleted file mode 100644
index d43959327c..0000000000
--- a/src/com/vaadin/shared/ui/checkbox/CheckBoxState.java
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
-@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