Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] AJDT Outline view and pointcut

Hi,

I am trying to discover all classes that implement the "CacheableProcessingComponent" interface.   In this endeavour I have created a declare warning pointcut with the following:

declare warning:
staticinitialization(org.apache.cocoon.caching.CacheableProcessingComponent+) && !within(org.apache.cocoon.caching..*): "Class implements cacheable";

However, I have a problem.  For example: the outline view for this aspect shows HTMLSerializer and TextSerializer. Both of these classes are subclasses of AbstractTextSerializer, which implements the Cacheable interface.  However, AbstractTextSerializer is not
shown in the AJDT outline view in Eclipse.  The warning is shown in the eclipse package explorer view.

Any thoughts??

Thanks,
- Jeff


Back to the top