1 2 3 4 5 6 7 8
public aspect ITDOfMethod { public void Concrete.doSomethingWith(Integer i) { System.out.println("In ITD method"); super.doSomethingWith(i); } }