up vote 0 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

It seems that the design you are using is a tad backwards.

From your description you don't particularly want to have direct Y methods in your X interface, so why not have a secondary interface Z for example sake. This way the interfaces will be more specific and you can implement both interfaces on the objects you need them.

This results in two smaller interfaces, but with larger flexibility.

Alternatively, you could create an abstract class Z, using the X interface. Then you just need to inherit Y from Z and can do a base() or super() construct to gain the functionality you need.

Both should work for you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.