summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/shared/ui/checkbox/CheckBoxServerRpc.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/shared/ui/checkbox/CheckBoxServerRpc.java')
-rw-r--r--src/com/vaadin/shared/ui/checkbox/CheckBoxServerRpc.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/com/vaadin/shared/ui/checkbox/CheckBoxServerRpc.java b/src/com/vaadin/shared/ui/checkbox/CheckBoxServerRpc.java
new file mode 100644
index 0000000000..fafd9bf2ff
--- /dev/null
+++ b/src/com/vaadin/shared/ui/checkbox/CheckBoxServerRpc.java
@@ -0,0 +1,11 @@
+/*
+@VaadinApache2LicenseForJavaFiles@
+ */
+package com.vaadin.shared.ui.checkbox;
+
+import com.vaadin.shared.MouseEventDetails;
+import com.vaadin.shared.communication.ServerRpc;
+
+public interface CheckBoxServerRpc extends ServerRpc {
+ public void setChecked(boolean checked, MouseEventDetails mouseEventDetails);
+} \ No newline at end of file