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.

Connector.java 632B

1234567891011121314151617181920212223242526272829
  1. package com.vaadin.terminal.gwt.client;
  2. import com.vaadin.terminal.gwt.client.communication.SharedState;
  3. /**
  4. * TODO Add javadoc
  5. *
  6. * @author Vaadin Ltd
  7. * @version @VERSION@
  8. * @since 7.0.0
  9. *
  10. */
  11. public interface Connector {
  12. /**
  13. * Gets the current shared state of the connector.
  14. *
  15. * @return state
  16. */
  17. public SharedState getState();
  18. /**
  19. * Returns the id for this connector. This must always be what has been set
  20. * in {@link #doInit(String, ApplicationConnection)} and must never change.
  21. *
  22. * @return The id for the connector.
  23. */
  24. public String getConnectorId();
  25. }