Back to project page Twitter-News.
The source code is released under:
Apache License
If you think the Android project Twitter-News 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 com.kaplandroid.twitternews.model; /* ww w. j av a 2s. com*/ /** * * @author KAPLANDROID * */ public class ChartModel { private int totalCount; private String feedbackName; public ChartModel(int totalCount, String feedbackName) { super(); this.totalCount = totalCount; this.feedbackName = feedbackName; } public int getTotalCount() { return totalCount; } public String getFeedbackName() { return feedbackName; } }