Element e = (Element) n;
String name = e.getAttribute("name");
String mapPath = e.getAttribute("path");
String miniMap = e.getAttribute("mini");
int nbLaps = Integer.parseInt(e.getAttribute("laps"));
m_maps.put(name, new Map(name, mapPath, miniMap, nbLaps));
}
}
}