org.robolectric.manifest.PackageItemData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resources Show documentation
Show all versions of resources Show documentation
An alternative Android testing framework.
package org.robolectric.manifest;
import com.google.errorprone.annotations.InlineMe;
public class PackageItemData {
protected final String name;
protected final MetaData metaData;
public PackageItemData(String name, MetaData metaData) {
this.metaData = metaData;
this.name = name;
}
public String getName() {
return name;
}
/**
* @deprecated - Use {@link #getName()} instead.
*/
@Deprecated
@InlineMe(replacement = "this.getName()")
public final String getClassName() {
return getName();
}
public MetaData getMetaData() {
return metaData;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy