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.

AbstractSplitPanelRpc.java 750B

12345678910111213141516171819202122232425262728
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.shared.ui.splitpanel;
  5. import com.vaadin.shared.MouseEventDetails;
  6. import com.vaadin.shared.communication.ServerRpc;
  7. public interface AbstractSplitPanelRpc extends ServerRpc {
  8. /**
  9. * Called when the position has been updated by the user.
  10. *
  11. * @param position
  12. * The new position in % if the current unit is %, in px
  13. * otherwise
  14. */
  15. public void setSplitterPosition(float position);
  16. /**
  17. * Called when a click event has occurred on the splitter.
  18. *
  19. * @param mouseDetails
  20. * Details about the mouse when the event took place
  21. */
  22. public void splitterClick(MouseEventDetails mouseDetails);
  23. }