It looks like static pointcuts cannot be imported statically. True?
package app.util;
public final aspect Bool {
public static final pointcut true_(): within(*);
public static final pointcut false_(): !true_();
}
=====
package app.scratch;
import static app.util.Bool.true_; // :(
public aspect Test {
public pointcut warn(): true_(); // :(
}
--
mailto:[email protected] <[email protected]>
skype:matthewadams12
googletalk:[email protected]
http://matthewadams.me
http://www.linkedin.com/in/matthewadams
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users