Is there a way to create an instance of a particular class given the class name (dynamic) and pass parameters to it's constructor.
Something like:
Object object = createInstance("mypackage.MyClass","MyAttributeValue");
MyAttributeValue is the an argument to the constructor of MyClass.