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 robolectric-resources Show documentation
Show all versions of robolectric-resources Show documentation
An alternative Android testing framework.
package org.robolectric.manifest;
public class PackageItemData {
protected final String className;
protected final MetaData metaData;
public PackageItemData(String className, MetaData metaData) {
this.metaData = metaData;
this.className = className;
}
public String getClassName() {
return className;
}
public MetaData getMetaData() {
return metaData;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy