/[projects]/android/MarketStats/src/dk/thoerup/marketstats/CommentCallback.java
ViewVC logotype

Contents of /android/MarketStats/src/dk/thoerup/marketstats/CommentCallback.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 756 - (show annotations) (download)
Thu May 27 08:07:28 2010 UTC (13 years, 11 months ago) by torben
File size: 1126 byte(s)
Instead of grouping by locale, don't use any locale at all
1 package dk.thoerup.marketstats;
2
3 import java.util.List;
4
5 import com.gc.android.market.api.MarketSession.Callback;
6 import com.gc.android.market.api.model.Market.Comment;
7 import com.gc.android.market.api.model.Market.CommentsResponse;
8 import com.gc.android.market.api.model.Market.ResponseContext;
9
10 public class CommentCallback implements Callback<CommentsResponse>{
11 private List<CommentBean> commentBeans;
12
13 private int entryCount;
14
15 public void setList(List<CommentBean> cl) {
16 commentBeans = cl;
17 }
18
19 public int getEntryCount() {
20 return entryCount;
21 }
22
23
24 @Override
25 public void onResult(ResponseContext context, CommentsResponse response) {
26 //System.out.println("Response : " + response);
27 //sb.append("Response: " + response + "\n");
28 entryCount = response.getEntriesCount();
29
30 //System.out.println("Count="+entryCount);
31
32 List<Comment> cl = response.getCommentsList();
33 for (Comment c : cl) {
34 CommentBean bean = new CommentBean();
35 bean.author = c.getAuthorName();
36 bean.rating = c.getRating();
37 bean.time = c.getCreationTime();
38 bean.text = c.getText();
39 commentBeans.add(bean);
40 }
41
42 }
43 }

  ViewVC Help
Powered by ViewVC 1.1.20