I have a class which implements persistable and a transient boolean member in this class. I noticed that thought he variable is declared as transient its state is being persisted. How do i over come this issue. Kindly help. Thanks in advance.
I have a class which implements persistable and a transient boolean member in this
Share
Blackberry’s persistence mechanism does not respect
transient. Possible solutions are:Hashtable) only for persistance, copying out into the “real” object after it is loaded and then writing back into the dummy object for saving.(See this forum thread)