AspectJ Inner-Class Join points

Zastanawiam się, czy istnieje sposób na dotarcie do kodu za pomocą aspektu w części „// zrób coś”?

Z góry dziękuję.

Turan.

public class Test {
    private class InnerTest {
        public InnerTest() {
            JButton j = new JButton("button");
            j.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    //do something  
                }
            });
        }
    }
}

questionAnswers(1)

yourAnswerToTheQuestion