public final class

RootViewPicker_RootResultFetcher_Factory

extends java.lang.Object

 java.lang.Object

↳androidx.test.espresso.base.RootViewPicker_RootResultFetcher_Factory

Gradle dependencies

compile group: 'androidx.test.espresso', name: 'espresso-core', version: '3.6.1'

  • groupId: androidx.test.espresso
  • artifactId: espresso-core
  • version: 3.6.1

Artifact androidx.test.espresso:espresso-core:3.6.1 it located at Google repository (https://maven.google.com/)

Androidx artifact mapping:

androidx.test.espresso:espresso-core com.android.support.test.espresso:espresso-core

Androidx class mapping:

androidx.test.espresso.base.RootViewPicker_RootResultFetcher_Factory android.support.test.espresso.base.RootViewPicker_RootResultFetcher_Factory

Summary

Constructors
publicRootViewPicker_RootResultFetcher_Factory(<any> activeRootListerProvider, <any> rootMatcherRefProvider)

Methods
public static RootViewPicker_RootResultFetcher_Factorycreate(<any> activeRootListerProvider, <any> rootMatcherRefProvider)

public androidx.test.espresso.base.RootViewPicker.RootResultFetcherget()

public static androidx.test.espresso.base.RootViewPicker.RootResultFetchernewInstance(ActiveRootLister activeRootLister, java.util.concurrent.atomic.AtomicReference<> rootMatcherRef)

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public RootViewPicker_RootResultFetcher_Factory(<any> activeRootListerProvider, <any> rootMatcherRefProvider)

Methods

public androidx.test.espresso.base.RootViewPicker.RootResultFetcher get()

public static RootViewPicker_RootResultFetcher_Factory create(<any> activeRootListerProvider, <any> rootMatcherRefProvider)

public static androidx.test.espresso.base.RootViewPicker.RootResultFetcher newInstance(ActiveRootLister activeRootLister, java.util.concurrent.atomic.AtomicReference<> rootMatcherRef)

Source

// Generated by Dagger (https://dagger.dev).
package androidx.test.espresso.base;

import androidx.test.espresso.Root;
import dagger.internal.DaggerGenerated;
import dagger.internal.Factory;
import dagger.internal.QualifierMetadata;
import dagger.internal.ScopeMetadata;
import java.util.concurrent.atomic.AtomicReference;
import javax.inject.Provider;
import org.hamcrest.Matcher;

@ScopeMetadata
@QualifierMetadata
@DaggerGenerated
@SuppressWarnings({
    "unchecked",
    "rawtypes",
    "KotlinInternal",
    "KotlinInternalInJava"
})
public final class RootViewPicker_RootResultFetcher_Factory implements Factory<RootViewPicker.RootResultFetcher> {
  private final Provider<ActiveRootLister> activeRootListerProvider;

  private final Provider<AtomicReference<Matcher<Root>>> rootMatcherRefProvider;

  public RootViewPicker_RootResultFetcher_Factory(
      Provider<ActiveRootLister> activeRootListerProvider,
      Provider<AtomicReference<Matcher<Root>>> rootMatcherRefProvider) {
    this.activeRootListerProvider = activeRootListerProvider;
    this.rootMatcherRefProvider = rootMatcherRefProvider;
  }

  @Override
  public RootViewPicker.RootResultFetcher get() {
    return newInstance(activeRootListerProvider.get(), rootMatcherRefProvider.get());
  }

  public static RootViewPicker_RootResultFetcher_Factory create(
      Provider<ActiveRootLister> activeRootListerProvider,
      Provider<AtomicReference<Matcher<Root>>> rootMatcherRefProvider) {
    return new RootViewPicker_RootResultFetcher_Factory(activeRootListerProvider, rootMatcherRefProvider);
  }

  public static RootViewPicker.RootResultFetcher newInstance(ActiveRootLister activeRootLister,
      AtomicReference<Matcher<Root>> rootMatcherRef) {
    return new RootViewPicker.RootResultFetcher(activeRootLister, rootMatcherRef);
  }
}