Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[ajdt-dev] is there a 'shortcut' for this?

hello all,
 i have a bean which has followiing methods

getStockTracesForX
getStockTracesZ
getStockTracesForReport
getStockTraceHistoryX


i have to apply a pointcut to the first three methods but not for the last

i would do  

call ( * getStockTracesForX(..)) || call ( * getStockTracesZ(..)) ||  call ( * getStockTracesForReport(..))


i was wondering if i could instead do something like (pseudocode)

call (* getStockTrace*(..))   AND EXCLUDE getStockTraceHistory


is that possible?

regards
 marco


Back to the top