Est-il possible d'obtenir une référence à this
partir d'une classe interne Java?
c'est à dire
Class outer {
void aMethod() {
NewClass newClass = new NewClass() {
void bMethod() {
// How to I get access to "this" (pointing to outer) from here?
}
};
}
}