Consider the following simplified demonstration:
Class X contain Class Y. Class Y has public method, Y.doYStuff().
How does one design X interface which uses Y's method as is?
If one appends a public method to X which simply forwards the requst to Y, it results in an undesirably bloated X interface and dependency of X code to Y code. This approach gets worst at multiple containment.
If one use indirect access, such as X.Y.doYStuff(), it becomes a much cleaner design, but results in breaking the X encapsulation.
So, is there a clean and correct design which enables using methods of an inner class out of there wrapper class?