super.checkComponentConfig(comp);
// name must be valid string
String theName = comp.getName();
if ((theName == null) || (theName.length() == 0)) {
String msg = "The component name (\"" + theName + "\") is not valid";
throw new BuildException(msg, getLocation());
}