Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-dev] Howto @SuppressAjWarnings

Hi,

I did some experiments with @SuppressAjWarnings with different results:

    @SuppressAjWarnings
    before() : call(* java.lang.String.helloWorld()) {
        System.out.println(thisJoinPoint);
    }

This works, the warning is suppressed. But when I tried

    @SuppressAjWarnings
    after() : call(String java.lang.Xxx.toString()) {
        System.out.println(thisJoinPoint);
    }

I got a "Xlint:invalidAbsoluteTypeName" warning. Is it possible, that some warnings can't be suppressed?

regards
Oliver
--
Oliver Böhm
http://www.javatux.de



Back to the top