Package com.google.gwt.user.client.rpc
Annotation Type GwtTransient
-
@Documented @Retention(RUNTIME) @Target(FIELD) public @interface GwtTransientThis annotation means the same thing as thetransientkeyword, but it is ignored by all serialization systems other than GWT's. Usually thetransientkeyword should be used in preference to this annotation. However, for types used with multiple serialization systems, it can be useful.Note that GWT will actually accept any annotation named GwtTransient for this purpose. This is done to allow libraries to support GWT serialization without creating a direct dependency on the GWT distribution.