Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

AroundAll.java 366B

21 anos atrás
1234567891011
  1. aspect AroundAll {
  2. pointcut targets(Object o) returns Object:
  3. executions(!abstract !native * *(..)) && instanceof(o) && (within(java..*) || within(javax..*) || within(org.aspectj..*));
  4. around(Object thisObj) returns Object: targets(thisObj) {
  5. if (true) {
  6. throw new RuntimeException("not meant to run");
  7. }
  8. return proceed(thisObj);
  9. }
  10. }