dagger.internal.codegen.bindinggraphvalidation.CompositeBindingGraphPlugin_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.bindinggraphvalidation;
import com.google.common.collect.ImmutableSet;
import dagger.internal.DaggerGenerated;
import dagger.internal.InstanceFactory;
import dagger.internal.codegen.validation.ValidationBindingGraphPlugin;
import javax.inject.Provider;
@DaggerGenerated
@SuppressWarnings({
"unchecked",
"rawtypes",
"KotlinInternal",
"KotlinInternalInJava"
})
public final class CompositeBindingGraphPlugin_Factory_Impl implements CompositeBindingGraphPlugin.Factory {
private final CompositeBindingGraphPlugin_Factory delegateFactory;
CompositeBindingGraphPlugin_Factory_Impl(CompositeBindingGraphPlugin_Factory delegateFactory) {
this.delegateFactory = delegateFactory;
}
@Override
public CompositeBindingGraphPlugin create(ImmutableSet plugins) {
return delegateFactory.get(plugins);
}
public static Provider create(
CompositeBindingGraphPlugin_Factory delegateFactory) {
return InstanceFactory.create(new CompositeBindingGraphPlugin_Factory_Impl(delegateFactory));
}
public static dagger.internal.Provider createFactoryProvider(
CompositeBindingGraphPlugin_Factory delegateFactory) {
return InstanceFactory.create(new CompositeBindingGraphPlugin_Factory_Impl(delegateFactory));
}
}