aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr276399/base/src/X.aj
blob: 39adcbf1a676f48b3d9f33182fcf3fae42a5e931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@Retention(RetentionPolicy.RUNTIME)
@interface WebService {}

@WebService 
class Foo {

        public Foo() {}

}
aspect X {

        after(): execution(*.new(..)) && @within(WebService) {

        }
}