Back to project page HRForecast-WFM.
The source code is released under:
Copyright 2014 Ahmed Shafei
If you think the Android project HRForecast-WFM listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package de.hrf.workforcemanagement.models; //from w ww . j a va2s . c o m import org.simpleframework.xml.Element; /** * The class defines the y-axis of the Radar and Bubble chart also known as * Special charts. */ public class SpecialChartYAxis { @Element(name = "visible") private boolean visible; public SpecialChartYAxis() { super(); } public SpecialChartYAxis(boolean visible) { this.visible = visible; } /** * @return true if the y-axis is visible, false otherwise */ public boolean isVisible() { return visible; } /** * @param visible * defines if the y-axis is visible or not */ public void setVisible(boolean visible) { this.visible = visible; } }