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.

VPaintable.java 304B

12345678910111213141516171819
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal.gwt.client;
  5. /**
  6. * TODO
  7. *
  8. */
  9. public interface VPaintable {
  10. /**
  11. * TODO
  12. *
  13. * @param uidl
  14. * @param client
  15. */
  16. public void updateFromUIDL(UIDL uidl, ApplicationConnection client);
  17. }