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.piechart; //from www.j a v a2 s . c o m import org.simpleframework.xml.*; @Root (name = "label") public class PieLabel { @Element(name = "text") private String text; @Element(name = "size") private String size; public PieLabel() { } public PieLabel(String text, String size) { this.text = text; this.size = size; } public String getText() { return text; } public void setText(String text) { this.text = text; } public String getSize() { return size; } public void setSize(String size) { this.size = size; } @Override public String toString() { return "PieLabel: (size= " + this.getSize() + ", text= " + this.getText() + ")"; } }