I have a HashMap that keeps references to my applications modules.
HashMap<String, Module> modules;
When I do this:
for(String key:modules.keySet()){
modules.remove(key);
}
There should be no more reference to the objects hence they should be removed by the GC at some point. Am I right or did I miss something? Is this secure or is it possible to regain access to the objects somehow?
Is this the same that happens when doing:
modules.clear();
?
In the end a more complicated question: When doing this with GWT, how much can I be sure, that the objects are gone in the browser? I would like to do this on user logout to prevent someone who uses the computer next to retrieve any information from the previous user. Of course most modules do "forget" their data an unDetach(), but I am not sure, all of them do. This information is a plus of course, if someone happens to know I would be thankful =)
