I am using RoboGuice 4.0beta2 , and i have this problem
I have several different objects that implement the same interface
call them A implements ITest B implements ITest C implements ITest
I have class D, that uses all 3 implementations together, each has a different purpose, but the same API for that
Inside class D i would like to inject A,B, and C, which have nothing to do with eachother,except the fact that they all implement the same interface
How would i configure the Module class to know that i mean different implementatios of ITest ?