blob: 1d142de5993d4a01825f27defc637558dfc981d6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
@Aspect
public abstract class WorldAt {
@Pointcut("execution(* Hello.sayWorld(..))")
void greeting() {}
}
|