is there any document that describe exactly the information of this file?
i want to declare an aspect that works for classes in an specific package (and sub-packages) and in the default package (no-package).
The first is easy:
expression=" within(mypackage..) and call (_____"
but, how can i do it for any class with no package ? (and i dont know the names of the classes)
(that is becouse i want that to catch all calls from jsp to a certain method, and the webserver compiles it with no package)
is there any way to negate the expresion "within" ?
I mean somethig like:
( whitin(myYesPackage..) and not within(myNoPackage..) ) and call(
thanks
javi.


Reply With Quote
