find valid class and class method
hi,
given a string "com.test.reflect.Test" .
i need to validate whether Class "Test " present in a given string"com.test.reflect.Test"
if com.test.reflect.Tes is given string then it should through an exception as Tes class is not present.
given a string "com.test.reflect.Test.getTestMethod" .
i need to validate whether Class "Test " present in a given string"com.test.reflect.Test.getTestMethod"
if com.test.reflect.Test.getMd is given string then it should through an exception as getMd method is not present.
help is needly appriciated
Thanks
Sachin

