for (Resource et : entityTypes) {
// Parse the Element and retrieve the associated Task...
final Node n = sax.read(et.getInputStream()).getRootElement();
final String importScript = n.valueOf("@script");
final Task k = importTasks.get(importScript);
// Figure out what the type/description should be...
final Class<?> type = Class.forName(n.valueOf("name"));
final String desc = n.valueOf("desc-name");