Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] adviceexectuion

has anyone gotten adviceexectution() to work? I'm trying a basic example in
1.1b2 and I get no results.

Here's my pointcut and code:

    before() : adviceexecution() {
        System.out.println("---");
    }

It seems like the simplest use possible. I can see printouts that come from
the body of my other advice (in the same file), but not the three dashes.
Am I missing something obvious?

Cheers,
nick

__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com


Back to the top