[aspectj-users] Using Aspect to pass a metadata as a new parameter through SOAP

2011-12-02 Thread Ashiwan.S.
Hi All, Sorry to bother you with email. I am new to aspectj and finding it really useful to write modular cross cutting concerns. I am trying to implement a distributed tracer for an enterprise web application, which uses a Metadata object passed along the requests. I am trying to use aspects to a

Re: [aspectj-users] static pointcut for "super"

2011-12-02 Thread Frank Pavageau
Hi Steve. On Fri, Dec 2, 2011 at 3:50 AM, Steve Ash wrote: > I would like to create an aspect to declare an error if a particular method > is called on the super from a subtype.  Something like: > > public class SuperClass { >    public final void dontCallThisFromBase() { } > } > > public class B