I can not seem to find the syntax for referring to the container object of an instance of an inner class. For example class Outer { class Inner { public boolean hasSameContainer( Outer.Inner input ); } } If the method hasSameContainer is supposed to determine whether the container object of "this", which is "Outer.this", was the same as the container object ...