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.

CheckBoxServerRpc.java 316B

1234567891011
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.shared.ui.checkbox;
  5. import com.vaadin.shared.MouseEventDetails;
  6. import com.vaadin.shared.communication.ServerRpc;
  7. public interface CheckBoxServerRpc extends ServerRpc {
  8. public void setChecked(boolean checked, MouseEventDetails mouseEventDetails);
  9. }