Creates (and dynamically loads the class of) an object using the constructor without any parameters. @param className Name of the class of the object @return Initialized object @throws SettingsError if object couldn't be created
(String className)
| 762 | * @throws SettingsError if object couldn't be created |
| 763 | */ |
| 764 | public Object createObject(String className) { |
| 765 | return loadObject(className, null, null); |
| 766 | } |
| 767 | |
| 768 | /** |
| 769 | * Dynamically loads and creates an object. |