Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Tracing Java API

Hello,

I'm implementing tracing methods in my component (package
ftBoilerSystem), with the following pointcut (my aspects are in
another package):

private pointcut requiredInterface() :
  call (* *.*(..))
  && (within(ftBoilerSystem.*);

But I don't want the java api operations to be registered. How can I
"turn them off"?
I tried to search in the files but I didn't found anything... 

Thanks!

-- 
Camila Rocha


Back to the top