app.artyomd.injector.TextSymbolItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of injector Show documentation
Show all versions of injector Show documentation
Gradle plugin for android which makes easier to inject aar libraries into project.
package app.artyomd.injector;
class TextSymbolItem {
private String type;
private String clazz;
private String name;
private String value;
TextSymbolItem(String type, String clazz, String name, String value) {
this.type = type;
this.clazz = clazz;
this.name = name;
this.value = value;
}
String getType() {
return type;
}
String getClazz() {
return clazz;
}
String getName() {
return name;
}
String getValue() {
return value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy