blob: 92bfe7da7dcd254ae0fc79dfc4cca90796775551 (
plain)
1
2
3
4
5
6
7
8
|
// "@DeclareWarning with a static final Integer"
import org.aspectj.lang.annotation.*;
aspect A{
@DeclareWarning("within(org..*)")
static final Integer msg = new Integer(22378008);
}
|