why if i make a root class pool and a child classpool ,when i reference a ctclass from child class pool , i do not see all method from that?
i make a root class pool:
| ClassPool RootClassPool;
| RootClassPool = new ClassPool();
| RootClassPool.getDefault();
|
i make a child classpool:
| ClassPool CP;
| CtClass CTCLASSE;
| .
| .
| .
| CP = new ClassPool(RootClassPool);
| try {
| CTCLASSE = CP.get("className");
| }
| catch(Exception e){System.err.println(e);}
| .
| .
| .
|
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877800#3877800
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877800
|