com.mypackage.aspects.ConcreteMonitoringAspect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of helloworld_woven Show documentation
Show all versions of helloworld_woven Show documentation
Weave HelloWorld class with the automon aspect.
This is an example of compile time weaving.
The newest version!
package com.mypackage.aspects;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.automon.aspects.monitoring.MonitoringAspect;
@Aspect
public class ConcreteMonitoringAspect extends MonitoringAspect {
@Pointcut("execution(public * com.stevesouza.helloworld.HelloWorld.*(..))")
public void select() {
}
}