com.google.common.annotations
Annotation Type GwtIncompatible
-
@Retention(value=CLASS) @Target(value={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 and Description java.lang.StringvalueDescribes why the annotated element is incompatible with GWT.
-
-
-
Element Detail
-
value
public abstract java.lang.String value
Describes why the annotated element is incompatible with GWT. Since this is generally due to a dependence on a type/method which GWT doesn't support, it is sufficient to simply reference the unsupported type/method. E.g. "Class.isInstance".
-
-
DMelt 3.0 © DataMelt by jWork.ORG