View Javadoc

1   package com.google.gwt.uibinder.client;
2   
3   import java.lang.annotation.Documented;
4   import java.lang.annotation.ElementType;
5   import java.lang.annotation.Retention;
6   import java.lang.annotation.RetentionPolicy;
7   import java.lang.annotation.Target;
8   
9   @Documented
10  @Retention(RetentionPolicy.CLASS)
11  @Target(ElementType.TYPE)
12  public @interface ElementParserToUse {
13    String className() default "";
14  }