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.bubblechart; /* w ww . j a v a2s . c om*/ import org.simpleframework.xml.Element; import org.simpleframework.xml.Root; import de.hrf.workforcemanagement.models.SpecialChartYAxis; @Root(name = "y_axis") public class BubbleYAxis extends SpecialChartYAxis { @Element(name = "name") private String name; public BubbleYAxis() { super(); } public BubbleYAxis(String name, boolean visible) { super(visible); this.name = name; } /** * @return the name of the x-axis */ public String getName() { return name; } /** * @param name * the name of the x-axis */ public void setName(String name) { this.name = name; } @Override public String toString() { return "yAxis: (visible= " + this.isVisible() + ", name= " + this.getName() + ")"; } }