org.aspectj/tests/other-systems/java-src/Pcds.java

5 lines
161 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
public aspect Pcds {
public pointcut withinMe(): within(java..*) || within(javax..*);
public pointcut myTarget(): target(java..*) || target(javax..*);
}