Here is what I have:
HashMap<String,HashMap<Integer,Integer>> data =
new HashMap<String,HashMap<Integer,Integer>>();
But I am having trouble adding values to this, because the inner hashmap doesn't have a name (note: it isn't supposed to). I'm actually trying to add an array list to the first Integer in HashMap So I am trying something like:
data.put(var, data.get(array.get(x), y));
Which it very much doesn't like and I'm totally clueless as to how to do it.