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 ava2s .co m import org.simpleframework.xml.Element; import org.simpleframework.xml.Root; /** * x-axis element structure: <x_axis> <name>DIMENSION_LABEL</name> * <visible>true/false</visible> <start>0</start> <step>1</step> <end>10</end> * </x_axis> */ @Root(name = "x_axis") public class StandardChartXAxis extends StandardChartAxis { @Element(name = "name") private String xAxisName; public StandardChartXAxis() { super(); } public StandardChartXAxis(String xAxisName, boolean visible, int step, int start, int end) { super(visible, step, start, end); this.xAxisName = xAxisName; } public String getxAxisName() { return xAxisName; } public void setxAxisName(String xAxisName) { this.xAxisName = xAxisName; } @Override public String toString() { return "xAxis: (xAxisName= " + this.getxAxisName() + ", visible= " + this.isVisible() + ", step= " + this.getStep() + ", start= " + this.getStart() + ", end= " + this.getEnd() + ")"; } }