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

org.robolectric.manifest.ContentProviderData Maven / Gradle / Ivy

There is a newer version: 3.4-rc2
Show newest version
package org.robolectric.manifest;

public class ContentProviderData {
  private final String className;
  private final String authority;

  public ContentProviderData(String className, String authority) {
    this.className = className;
    this.authority = authority;
  }

  public String getClassName() {
    return className;
  }

  public String getAuthority() {
    return authority;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy