GWT.create() is the reflection equivalent in GWT, But it take only class literals, not fully qualified String for the Class name. How do i dynamically create classes with
You might be able to avoid the whole issue by doing it on the server side. Say with a service witch takes String and returns some sort of a serializable super type. On the server side you can do
return (MySerializableType)Class.forName("className").newInstance();
Depending on your circumstances it might not be a big performance bottleneck.