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 506B

12345678910111213141516171819
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  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. @Deprecated
  14. public interface Paintable {
  15. public void updateFromUIDL(UIDL uidl, ApplicationConnection client);
  16. }