ClassInfo info = new ClassInfo();
_classInfoMap.put(qualifiedClassName, "");
// Create and introspect Class
Class clazz = Class.forName(qualifiedClassName);
IntrospectionHelper helper = IntrospectionHelper.getHelper(clazz);
info._isContainer = helper.supportsCharacters();
// Lookup Attributes
Enumeration e = helper.getAttributes();
if (e.hasMoreElements()) {
info._attributes = new HashMap();
while (e.hasMoreElements()) {