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.

FieldRpc.java 394B

12345678910111213141516171819
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.shared.communication;
  5. public class FieldRpc {
  6. public interface FocusServerRpc extends ServerRpc {
  7. public void focus();
  8. }
  9. public interface BlurServerRpc extends ServerRpc {
  10. public void blur();
  11. }
  12. public interface FocusAndBlurServerRpc extends FocusServerRpc,
  13. BlurServerRpc {
  14. }
  15. }