Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Pointcut that includes only interfaces

Hi,

I'd like to create a simple aspect that adds an interface to other interfaces in a specific package. Right now my pointcut looks like:
declare parents: x.y.z..* extends MyInterface;

My question is, how to I include only interfaces in the pointcut? I.e. no concrete (or abstract) classes.

/Johan

Back to the top