blob: 735b0ced9f25415c05d3db46217132d6636d1ee9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package layering;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
@Aspect
public class SystemArchitektur {
@Pointcut("within(dao.*)")
public void inDAOLayer() {}
}
|