PropertySet properties = Configurator.getProperties(name, tagName);
String classname = properties.getString(CLASSNAME_KEY);
Class implClass = loadUIClass(classname, rootClass);
try {
IFlexViewComponentUI ui = (IFlexViewComponentUI)implClass.newInstance();
ui.setCreationParameters(properties);
return ui;
} catch(Exception e) {
// we use public, no-argument constructors, so if this happens, we
// have a configuration error.
System.err.println("Exception: " +e.getMessage());