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

org.dominokit.domino.ui.icons.MdiMeta Maven / Gradle / Ivy

There is a newer version: 1.0.139
Show newest version
package org.dominokit.domino.ui.icons;

import java.util.ArrayList;
import java.util.List;

public class MdiMeta {

    private final String name;
    private final String codepoint;
    private final List aliases;
    private final List tags;
    private final String author;
    private final String version;



    public MdiMeta(String name, String codepoint, List aliases, List tags, String author, String version) {
        this.name = name;
        this.codepoint = codepoint;
        this.aliases = aliases;
        this.tags = tags;
        this.author = author;
        this.version = version;
    }

    MdiMeta(String name){
        this( name, "", new ArrayList<>(), new ArrayList<>(), "", "");
    }

    public String getName() {
        return name;
    }

    public String getCodepoint() {
        return codepoint;
    }

    public List getAliases() {
        return aliases;
    }

    public List getTags() {
        return tags;
    }

    public String getAuthor() {
        return author;
    }

    public String getVersion() {
        return version;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy