net.jbock.context.ContextComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbock-compiler Show documentation
Show all versions of jbock-compiler Show documentation
jbock annotation processor
package net.jbock.context;
import dagger.Component;
@Component(modules = ContextModule.class)
@ContextScope
public interface ContextComponent {
GeneratedClass generatedClass();
@Component.Factory
interface Factory {
ContextComponent create(ContextModule module);
}
}