anonymous wrote : i am creating a instance of a class efg in class abc
Your code should look like:
Class classDefinition = Class.forName("p.sp.ssp.abc");
| object = classDefinition.newInstance();
You will have to specify the entire package name and class name to create the Class.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3958027#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...