From: <kab...@jb...> - 2005-05-18 13:10:52
|
Weird, The instrumentor first creates a copy of your original method with a new name (wilken$informationssystem$berechtigung$BerichtBearbeitenBerechtigungImpl$getId$aop) and then modifies the method with the original name to call the introduced method. I was wondering if it could be to do with the length of the name of the method, so I tried your example and it worked fine. Here's my version of the original class. | package wilken.informationssystem.berechtigung; | | public class BerichtBearbeitenBerechtigungImpl | { | public int getId() | { | return 2938; | } | | } | | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3878188#3878188 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3878188 |