Never tried it but will the actual type of a final field be totally ignored 
nowadays when serializing? If thats the case you might break people who 
have final fields whose types are not compatible to GWT-RPC serialization.

For example take:

enum Test {
  CONSTANT
}

class Example implements Serializable {
  private final EnumSet<Test> tests;
  //....
}

Currently EnumSet can not be serialized by GWT-RPC and an exception will be 
thrown but does this Example class currently work anyways because the field 
is final?


-- J.

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors
--- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to