Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [aspectj-users] perthis and binding on super class.

Title: perthis and binding on super class.

public aspect CarStopping perthis( execution ( Car.new() ) ){

 

  Have you tried something like

public aspect CarStopping perthis(this(Car)) {

// otherwise the same as before...

  It should not make any difference, but it's worth a try.  I had a somewhat similar issue a while back w/ abstract aspects and perthis and that issue went away by using perthis(this(MyClass)) instead of perthis(somepoitncut()).

 

          --Antti--

 

 


Back to the top