I use services to implement extensions to my domain model. All extensions implement the same interface. The question is, how can I retrieve all the implementations?
I tried the @Inject annotation with a list/array of my interface but it didn't work.
Then I tried the get method of the IEclipseContext but also got only one instance.
Funny thing: if I inject a single instance via annotation and retrieve another instance using the context I get two different implementations.