blob: 2fc5ea32c34a29be4df6072ea8bc4a0f6b87f5a7 (
plain)
1
2
3
4
5
6
7
8
9
|
package c.d;
import org.aspectj.lang.annotation.*;
@Aspect
public class AtDurationMethod extends AbstractDurationMethod {
@Pointcut("within(a.b.*) && call(public * a..*(..))")
public void methods() {}
}
|