On Nov 20, 3:24 pm, Michael Burton <
m...@niskala.org> wrote:
> I'd like to be able to support this for users of my libraries. Is
> there another mechanism I can plug into in order to work around this
> limitation?
You can setup your own static injection, and have that delegate.
@Inject static void doMyInjections() {
Foo.staticSetup();
Bar.staticSetup();
}
All static injection knows is the set of classes specified by calls to
requestStaticInjection(). You probably don't need this list to do your
own static configuration; the statically Guice-injected classes are
probably unrelated to the classes you want to hear about.