I have a class int the following name com.test.TestClass
com.test.TestClass
At one point in my code I have to get instance of this class by only having the class name stri
GWT.create( Reflection.class ).instantiate( YourClass.class );
Why don't you use then just GWT.create( YourClass.class ); ?
GWT.create( YourClass.class );
Maybe you ment GWT.create( Reflection.class ).instantiate( "YourClass" );
GWT.create( Reflection.class ).instantiate( "YourClass" );