public static void registerEditor(final String typeName,
final String editorTypeName)
throws ClassNotFoundException
{
if (typeName == null) {
throw new NullArgumentException("typeName");
}
if (editorTypeName == null) {
throw new NullArgumentException("editorTypeName");
}
Class type = ClassLoading.loadClass(typeName);
Class editorType = ClassLoading.loadClass(editorTypeName);