Sorry for the basic question. But it was like 3 years ago since I encountered this case.
I have this code
class ParentClass {
   ...
   class InnerClass {
      ...
      // 'this' call here
      ...
   }
}
I would appreciate it if you could answer these questions for me:
- How can I get the instance of ParentClass using 
thisnotation? - How can I get the instance of InnerClass using 
thisnotation? 
Cheers!