{
try
{
String pluginName = properties.getProperty(attrName);
Class c = ClassUtil.forName(pluginName, getClass());
MessagePlugin thePlugin = (MessagePlugin) c.newInstance();
messageFormats.put(thePlugin.getType(), thePlugin);
}
catch (ClassNotFoundException ex)
{
ex.printStackTrace();
}