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

com.trivago.cluecumber.rendering.pages.charts.pojos.Legend Maven / Gradle / Ivy

There is a newer version: 2.9.4
Show newest version
package com.trivago.cluecumber.rendering.pages.charts.pojos;

public class Legend {
    private boolean display = true;

    public boolean isDisplay() {
        return display;
    }

    public void setDisplay(final boolean display) {
        this.display = display;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy