public static String path = "./ressources/EffectRessource/xml/Shape.xml";
public ArrayList<ArrayList<String[]>> CreateComboList(String path) {
ArrayList<ArrayList<String[]>> result = new ArrayList<ArrayList<String[]>>();
XMLFileLoader xmlDocument = new XMLFileLoader(path);
ArrayList<String> triggerTypes = xmlDocument
.getNodeNameInTag("ShapeElement");
result.add(new ArrayList<String[]>());
String[] temp = new String[triggerTypes.size()];
temp = triggerTypes.toArray(temp);