i want, for test engineering reasons, to add some entrys to the GWT RPC Serialization List. Unfortunately i found no real documentation on how this entrys are build. So far i see them like this:
classname, bool, bool, bool, bool, classname(repeat), Serialization UID, Serialization UID(repeat)
The Classname and the UID ist clear so far. But what meaning do the four boolean values have? Did i miss them in the gwt documentation?
Regards Makenshi
As per SerializationPolicyLoader class, the boolean fields are for representing field serializable, instant serializable, field deserializable, instant deserializable. -Seshagiri
That was the answer i was looking for. Thanks to Seshagiri.