I have an interface IA. Adapter B implements that interface. IZ is an interface which is implemented by X, Y and Z classes. IA is an interface with which my application talks with to communicate with X , Y and Z using adapter B. B contains an instance of IZ (Adapter pattern). Now from adapter B, I want to access functionality which is unique to X, but since in adapter it is bound to interface IZ, how can I access this functionality in a clean way ? Also the instance of IZ in adapter B is decided at runtime based on some manual activity of user. Is there any way I can use dependency injection to instantiate the instance of IZ in adapter B (I want to avoid using new operator)?
IA
|
B (has an instance of IZ)
IZ
/ | \
X Y Z
EDIT : There are high chances that X' , Y' , Z' can come into picture...all with same interface IZ but Y' might have one method (might not be same as X) that is required to be accessed from B. Both the unique methods of Y' and X will adapt to some common method M in interface IA
I don't have control over X, Y and Z or X', Y', Z' other than they can implement IZ interface. But I have control over IA and B. I used adapter pattern essentially so that new classes can adapt to my interface IA