final String name = attributes.getValue("name");
// Convert the type attribute value into an enumeration.
String type = attributes.getValue("type");
Complexity complexity;
if (type == null) {
complexity = Complexity.SIMPLE;
} else {
complexity = Complexity.literal(type);
if (complexity == null) {