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

com.bigcustard.glide.help.HelpTopic Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.bigcustard.glide.help;

public class HelpTopic {
    private String text;
    private String exampleCode;

    public HelpTopic(String text, String exampleCode) {
        this.text = text;
        this.exampleCode = exampleCode;
    }

    public String getText() {
        return text;
    }

    public String getExampleCode() {
        return exampleCode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy