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

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

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.BindingRequest;
import dagger.internal.codegen.binding.ContributionBinding;
import javax.inject.Provider;

@DaggerGenerated
@SuppressWarnings({
    "unchecked",
    "rawtypes",
    "KotlinInternal",
    "KotlinInternalInJava"
})
public final class PrivateMethodRequestRepresentation_Factory_Impl implements PrivateMethodRequestRepresentation.Factory {
  private final PrivateMethodRequestRepresentation_Factory delegateFactory;

  PrivateMethodRequestRepresentation_Factory_Impl(
      PrivateMethodRequestRepresentation_Factory delegateFactory) {
    this.delegateFactory = delegateFactory;
  }

  @Override
  public PrivateMethodRequestRepresentation create(BindingRequest request,
      ContributionBinding binding, RequestRepresentation wrappedRequestRepresentation) {
    return delegateFactory.get(request, binding, wrappedRequestRepresentation);
  }

  public static Provider create(
      PrivateMethodRequestRepresentation_Factory delegateFactory) {
    return InstanceFactory.create(new PrivateMethodRequestRepresentation_Factory_Impl(delegateFactory));
  }

  public static dagger.internal.Provider createFactoryProvider(
      PrivateMethodRequestRepresentation_Factory delegateFactory) {
    return InstanceFactory.create(new PrivateMethodRequestRepresentation_Factory_Impl(delegateFactory));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy