All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dagger.internal.codegen.bindinggraphvalidation.CompositeBindingGraphPlugin_Factory_Impl Maven / Gradle / Ivy

There is a newer version: 2.52
Show 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));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy