I want to create a mutli dimensional array without a fixed size.
I need to be able to add items of String[2] to it.
String[2]
I have tried looking at:
BTW. you should prefer coding against an Interface.
private ArrayList action = new ArrayList();
Should be
private List action = new ArrayList();