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.

ClientWidget.java 493B

123456789101112131415161718192021
  1. /**
  2. *
  3. */
  4. package com.vaadin.ui;
  5. import java.lang.annotation.ElementType;
  6. import java.lang.annotation.Retention;
  7. import java.lang.annotation.RetentionPolicy;
  8. import java.lang.annotation.Target;
  9. import com.vaadin.terminal.gwt.client.Paintable;
  10. /**
  11. * Annotation defining the default client side counterpart in GWT terminal for
  12. * {@link Component}
  13. */
  14. @Retention(RetentionPolicy.RUNTIME)
  15. @Target(ElementType.TYPE)
  16. public @interface ClientWidget {
  17. Class<? extends Paintable> value();
  18. }