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; //w w w . j a v a 2 s . co m import org.simpleframework.xml.*; @Root (name = "dimension") public class Dimension { @Element (name = "text") private String dimensionText; /** * @return the dimension label of the y-axis of the chart */ public String getText() { return dimensionText; } /** * @param text * the dimension label of the y-axis of the chart */ public void setText(String text) { this.dimensionText = text; } public String toString() { return "Dimension: (dimensionText = " + this.dimensionText + ")"; } }