I have a problem with map and list in GWT. I need to put a map in to a list but GWT does not support ArrayList and HashMap since they are not serialized types. Exactly I want to create following list with out using ArrayList and HashMap
ArrayList<HashMap<String, Object>> map = new ArrayList<HashMap<String,Object>>();
Thank you for new ideas,
Regards