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

app.artyomd.injector.TextSymbolItem Maven / Gradle / Ivy

Go to download

Gradle plugin for android which makes easier to inject aar libraries into project.

There is a newer version: 0.5.0
Show newest version
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