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

dagger.internal.codegen.writing.ComponentRequirementRequestRepresentation_Factory_Impl Maven / Gradle / Ivy

// 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 implements ComponentRequirementRequestRepresentation.Factory {
  private final ComponentRequirementRequestRepresentation_Factory delegateFactory;

  ComponentRequirementRequestRepresentation_Factory_Impl(
      ComponentRequirementRequestRepresentation_Factory delegateFactory) {
    this.delegateFactory = delegateFactory;
  }

  @Override
  public 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));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy