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.

Paintable.java 475B

123456789101112131415161718
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal.gwt.client;
  5. /**
  6. * An interface used by client-side widgets or paintable parts to receive
  7. * updates from the corresponding server-side components in the form of
  8. * {@link UIDL}.
  9. *
  10. * Updates can be sent back to the server using the
  11. * {@link ApplicationConnection#updateVariable()} methods.
  12. */
  13. public interface Paintable {
  14. public void updateFromUIDL(UIDL uidl, ApplicationConnection client);
  15. }