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 . j av a 2 s . co m*/ import org.simpleframework.xml.Element; public class StandardChartAxis { @Element(name = "visible") private boolean visible; @Element(name = "step") private int step; @Element(name = "start") private int start; @Element(name = "end") private int end; public StandardChartAxis() { } public StandardChartAxis(boolean visible, int step, int start, int end) { this.visible = visible; this.step = step; this.start = start; this.end = end; } public StandardChartAxis(boolean visible) { this.visible = visible; } /** * @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; } public int getStep() { return step; } public void setStep(int step) { this.step = step; } /** * @return the starting point of the x-axis */ public int getStart() { return start; } /** * @param start * the starting point of the x-axis */ public void setStart(int start) { this.start = start; } /** * @return the end point of the x-axis */ public int getEnd() { return end; } /** * @param end * the ending point of the x-axis */ public void setEnd(int end) { this.end = end; } }