Fairly easy
for (java.lang.reflect.Method m : getClass().getMethods())
| {
| if (Modifier.isFinal(m.getModifiers()))
| {
| // throw exception
| }
| }
It just requires iterating over all methods of all components at startup. File a jira
issue.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4100697#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...