@Retention(value=CLASS)
@Target(value={TYPE,METHOD,CONSTRUCTOR,FIELD})
@Documented
public @interface GwtIncompatible
Any class, method or field with an annotation @GwtIncompatible (with any package prefix) is ignored by the GWT compiler.
As mentioned at GwtIncompatible.html, third-party libraries may use their own copy of this annotation class to avoid adding a compile-time dependency on GWT.
Please note that the retention policy of this annotation is "CLASS", which means, that you can ship generated builder classes without the need to include this annotation into the target application's classpath.
| Modifier and Type | Optional Element and Description |
|---|---|
java.lang.String |
value |