JBoss.org Community Documentation
The Advised Members view gives the developer an overview of every single method and field in the current class that is advised by an Aspect or Interceptor. Let's have a look.
Once you've done this, you should now make sure you are currently editing the HelloAOP
class we
created in the last tutorial. Once you have that class open in an editor, you should see something similar to this
in the Advised Members view:
Here we see that the method "callMe()" is intercepted by the interceptor HelloInterceptor
.
Double clicking on HelloInterceptor
will take you straight to it. This view is similar to
the Outline view, except it only shows members in your class which are intercepted.