I have a hashmap in my class titled DataStorage:
HashMap people = new HashMap(); people.put(\"bob\", 2); peopl
You can access it:
DataStorage storage = new DataStorage(); HashMap people = storage.people;