Here is the annotation:
@Target(value = ElementType.TYPE)
@Retention(value = RetentionPolicy.RUNTIME)
@Inherited
public @interface MyAnnotation {
String
THE FOLLOWING WORKS, BUT IS NOT RECOMMENDED BY kriegaex. PROVIDED HERE AS POSSIBLE MATERIAL THAT COULD BE REPURPOSED IF THE NEED ARISES.
This was my first working solution to the problem which uses in part the initialization() pointcut primitive.
public aspect AnnotationTests {
private pointcut genericConstructor(): initialization(*.new(..));
private pointcut withinMyAnnotation(): @within(MyAnnotation);
private pointcut constructorInAnnotatedClass(): genericConstructor()
&& withinMyAnnotation();
before(): constructorInAnnotatedClass() && !cflowbelow(constructorInAnnotatedClass()) {
final Object objectInstance = thisJoinPoint.getTarget();
System.out.println("Object class name at join point: "
+ objectInstance.getClass().getName());
}
}
@MyAnnotation(name="foo")
public class ClassA {
public ClassA() {
// Do something
}
public static void main(String[] args) {
ClassA classA = new ClassA();
ClassB classB = new ClassB("");
if (classA.getClass().getName().equals(classB.getClass().getName())) {
throw new RuntimeException("Big problems!");
}
}
}
@MyAnnotation(name="bar")
public class ClassB {
private final String aString;
public ClassB(String aString) {
this.aString = aString;
}
}