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

org.openfact.report.ThemeKey Maven / Gradle / Ivy

There is a newer version: 1.1.3.Final
Show newest version
package org.openfact.report;

public class ThemeKey {

    private String name;
    private ReportTheme.Type type;

    public static ThemeKey get(String name, ReportTheme.Type type) {
        return new ThemeKey(name, type);
    }

    private ThemeKey(String name, ReportTheme.Type type) {
        this.name = name;
        this.type = type;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public ReportTheme.Type getType() {
        return type;
    }

    public void setType(ReportTheme.Type type) {
        this.type = type;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        ThemeKey themeKey = (ThemeKey) o;

        if (name != null ? !name.equals(themeKey.name) : themeKey.name != null) return false;
        if (type != themeKey.type) return false;

        return true;
    }

    @Override
    public int hashCode() {
        int result = name != null ? name.hashCode() : 0;
        result = 31 * result + (type != null ? type.hashCode() : 0);
        return result;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy