Back to project page brainrot.
The source code is released under:
Apache License
If you think the Android project brainrot 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 jcuenod.brainrot; /*from w w w . ja va 2 s. com*/ public class PieChartDetails { private int ranking; private int count; public PieChartDetails(int ranking, int count) { this.ranking = ranking; this.count = count; } protected int getRanking() { return ranking; } protected void setRanking(int ranking) { this.ranking = ranking; } protected int getCount() { return count; } protected void setCount(int count) { this.count = count; } @Override public String toString() { return "PieChartDetails [ranking=" + ranking + ", count=" + count + "]"; } }