You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AspectBreaker.java 367B

12345678910111213141516171819202122
  1. import java.util.ArrayList;
  2. public class AspectBreaker extends ArrayList<ICounterValue[]> {
  3. private static final long serialVersionUID = 1L;
  4. public AspectBreaker() {
  5. }
  6. public boolean test(ICounterValue[] obj) {
  7. this.size();
  8. return false;
  9. }
  10. }
  11. interface ICounterValue {
  12. }
  13. aspect X {
  14. before(): call(* *(..)) {}
  15. }