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 w w.java 2s . c o m import org.simpleframework.xml.Element; import org.simpleframework.xml.Root; /** * The class defines the x-axis of the Radar and Bubble chart also known as * Special charts. */ @Root(name = "x_axis") public class SpecialChartXAxis { @Element(name = "name") private String name; @Element(name = "visible") private boolean visible; public SpecialChartXAxis() { } public SpecialChartXAxis(String name, boolean visible) { this.name = name; this.visible = visible; } /** * @return the name of the x-axis */ public String getName() { return name; } /** * @param name the name of the x-axis */ public void setName(String name) { this.name = name; } /** * @return true if the x-axis is visible, false otherwise */ public boolean isVisible() { return visible; } /** * @param visible * defines if the x-axis is visible or not */ public void setVisible(boolean visible) { this.visible = visible; } @Override public String toString() { return "xAxis: (name= " + this.getName() + ", visible= " + this.isVisible() + ")"; } }