package org.simantics.district.network.visualisations; public class VisualisationColoringObject { private String label; private boolean used; private String variable; private double min; private double max; private String unit; private String colorMap; private boolean isDefault; public VisualisationColoringObject(String label, boolean used, String variable, double min, double max, String unit, String colorMap, boolean isDefault) { this.label = label; this.used = used; this.variable = variable; this.min = min; this.max = max; this.unit = unit; this.colorMap = colorMap; this.isDefault = isDefault; } public String getLabel() { return label; } public boolean isUsed() { return used; } public String getVariable() { return variable; } public double getMin() { return min; } public double getMax() { return max; } public String getUnit() { return unit; } public String getColorMap() { return colorMap; } public boolean isDefault() { return isDefault; } }