Package com.google.common.annotations
Annotation Type GwtIncompatible
- 
@Retention(CLASS) @Target({TYPE,METHOD,CONSTRUCTOR,FIELD}) @Documented @GwtCompatible public @interface GwtIncompatibleThe presence of this annotation on a method indicates that the method may not be used with the Google Web Toolkit (GWT), even though its type is annotated asGwtCompatibleand accessible in GWT. They can cause GWT compilation errors or simply unexpected exceptions when used in GWT.Note that this annotation should only be applied to methods, fields, or inner classes of types which are annotated as
GwtCompatible. 
- 
- 
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.StringvalueDescribes why the annotated element is incompatible with GWT. 
 -