Comment by [email protected]:

Why it is not possible to shared @Provides methods from a abstract module ?
Example :

public abstract class ModuleSkeleton implements Module {

    @Provides
    final protected EntityManager provideEntityManager() {
        return ...;
    }

    @Provides
    final protected InternalUser provideInternalUser() {
        return ...;
    }
}

For more information:
https://code.google.com/p/google-guice/wiki/ProvidesMethods

--
You received this message because you are subscribed to the Google Groups 
"google-guice-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-guice-dev.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to