org.robolectric.manifest.PermissionGroupItemData 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;
/**
* Holds permission data from manifest.
*/
public class PermissionGroupItemData extends PackageItemData {
private final String label;
private final String description;
public PermissionGroupItemData(String name, String label, String description,
MetaData metaData) {
super(name, metaData);
this.label = label;
this.description = description;
}
public String getLabel() {
return label;
}
public String getDescription() {
return description;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy