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.

ClickRpc.java 494B

123456789101112131415161718
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.shared.ui;
  5. import com.vaadin.shared.MouseEventDetails;
  6. import com.vaadin.shared.communication.ServerRpc;
  7. public interface ClickRpc extends ServerRpc {
  8. /**
  9. * Called when a click event has occurred and there are server side
  10. * listeners for the event.
  11. *
  12. * @param mouseDetails
  13. * Details about the mouse when the event took place
  14. */
  15. public void click(MouseEventDetails mouseDetails);
  16. }