Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [aspectj-users] Is it possible?

WARNING: advices of abstract aspects are not woven, only if the aspect is concretized and as many times as many concrete subclasses are...

could be your problem here.

- 101

:: Hi, 
:: 
:: Is it posible to an aspect intercept itself? (nothing happens)
:: 
:: abstract aspect AbstractMethodInterception {
::   abstract pointcut calls();
::   
::   before() : call(AbstractMethodInterception.new(..)) {
::     System.out.println("constructor");
::   }
::   
::   after() : call(* AbstractMethodInterception.finalize(..)) {
::     System.out.println("destructor");
::   } 
:: }
:: 
:: Thanks,
:: 
:: André
:: 
::  
:: ---
:: Acabe com aquelas janelinhas que pulam na sua tela.
:: AntiPop-up UOL - É grátis! 
:: http://antipopup.uol.com.br
:: 
:: _______________________________________________
:: aspectj-users mailing list
:: aspectj-users@xxxxxxxxxxx 
:: :: http://dev.eclipse.org/mailman/listinfo/aspectj-users
:: 
:: 


Back to the top