Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Constructor introduction

Hi,
 
I would like to introduct a default constructor in all classes of my package. Is it possible?
 
package package1
  class Class1
  class Class2
 
Class1.new() {...}  (works fine)
Class2.new() {...}  (works fine)
package1.*.new() {...} (error)
 
Thanks,
 
André

Back to the top