org.aspectj/tests/other-systems/java-src/Pcds.java
2002-12-16 18:51:06 +00:00

5 lines
161 B
Java

public aspect Pcds {
public pointcut withinMe(): within(java..*) || within(javax..*);
public pointcut myTarget(): target(java..*) || target(javax..*);
}