summaryrefslogtreecommitdiffstats
path: root/tests/other-systems/rsa/aspects/GetsSets.java
blob: b5d81dcfff0edb596b4cd00d753c85c6ee3059cb (plain)
1
2
3
4
5
6
7
8
aspect Gets {
    pointcut setters(): call(void *.set(..));
    pointcut getters(): call(Object *.get());

    pointcut all(): setters() || getters();
    before(): all() {}
    after(): all() {}
}