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.

LayoutClickRpc.java 691B

12345678910111213141516171819202122
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.shared.ui;
  5. import com.vaadin.shared.Connector;
  6. import com.vaadin.shared.MouseEventDetails;
  7. import com.vaadin.shared.communication.ServerRpc;
  8. public interface LayoutClickRpc extends ServerRpc {
  9. /**
  10. * Called when a layout click event has occurred and there are server side
  11. * listeners for the event.
  12. *
  13. * @param mouseDetails
  14. * Details about the mouse when the event took place
  15. * @param clickedConnector
  16. * The child component that was the target of the event
  17. */
  18. public void layoutClick(MouseEventDetails mouseDetails,
  19. Connector clickedConnector);
  20. }