dagger.internal.codegen.writing.ComponentRequirementRequestRepresentation_Factory_Impl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dagger-compiler Show documentation
Show all versions of dagger-compiler Show documentation
A fast dependency injector for Android and Java.
The newest version!
// Generated by Dagger (https://dagger.dev).
package dagger.internal.codegen.writing;
import dagger.internal.DaggerGenerated;
import dagger.internal.InstanceFactory;
import dagger.internal.codegen.binding.ComponentRequirement;
import dagger.internal.codegen.binding.ContributionBinding;
import javax.inject.Provider;
@DaggerGenerated
@SuppressWarnings({
"unchecked",
"rawtypes",
"KotlinInternal",
"KotlinInternalInJava"
})
public final class ComponentRequirementRequestRepresentation_Factory_Impl extends ComponentRequirementRequestRepresentation.Factory {
private final ComponentRequirementRequestRepresentation_Factory delegateFactory;
ComponentRequirementRequestRepresentation_Factory_Impl(
ComponentRequirementRequestRepresentation_Factory delegateFactory) {
this.delegateFactory = delegateFactory;
}
@Override
ComponentRequirementRequestRepresentation create(ContributionBinding binding,
ComponentRequirement componentRequirement) {
return delegateFactory.get(binding, componentRequirement);
}
public static Provider create(
ComponentRequirementRequestRepresentation_Factory delegateFactory) {
return InstanceFactory.create(new ComponentRequirementRequestRepresentation_Factory_Impl(delegateFactory));
}
public static dagger.internal.Provider createFactoryProvider(
ComponentRequirementRequestRepresentation_Factory delegateFactory) {
return InstanceFactory.create(new ComponentRequirementRequestRepresentation_Factory_Impl(delegateFactory));
}
}