toothpick.configuration.ReflectionConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toothpick-runtime Show documentation
Show all versions of toothpick-runtime Show documentation
'Main Toothpick implementation'
package toothpick.configuration;
import toothpick.Factory;
import toothpick.MemberInjector;
interface ReflectionConfiguration {
Factory getFactory(Class clazz);
MemberInjector getMemberInjector(Class clazz);
}