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.

GenericAspect.aj 233B

12345678910111213141516
  1. /**
  2. *
  3. */
  4. package none;
  5. /**
  6. * @author Dawid Pytel
  7. *
  8. */
  9. public abstract aspect GenericAspect<T> {
  10. interface SomeInterface {
  11. }
  12. pointcut SomeConstructor(SomeInterface var) : execution(SomeInterface+.new(..)) && this(var);
  13. }