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 .ja v a 2s . c om import org.simpleframework.xml.Attribute; import org.simpleframework.xml.Root; import org.simpleframework.xml.Text; @Root public class Property { /** * Types: * chart-bg-color * chart-bg-picture * * pie-focus * pie-size * * bar-orientation * bar-gridLines * bar-label-color * bar-label-fontSize * bar-barWidth * * stackedbar-orientation * stackedbar-gridLines * stackedbar-label-color * stackedbar-label-fontSize * stackedbar-barWidth * * line-orientation * line-gridLines * line-label-color * line-label-fontSize * line-pointWidth * */ @Attribute private String type; @Text private String value; public Property() { } public Property(String type, String value) { this.type = type; this.value = value; } public String getType() { return this.type; } public String getValue() { return this.value; } public void setType(String type) { this.type = type; } public void setValue(String value) { this.value = value; } public String toString() { return "Property->(Type=" + this.getType() + ", Value=" + this.getValue() + ")"; } }