--- android/MarketStats/src/dk/thoerup/marketstats/CommentCallback.java 2010/04/23 14:13:39 662 +++ android/MarketStats/src/dk/thoerup/marketstats/CommentCallback.java 2010/04/23 15:23:44 663 @@ -11,6 +11,8 @@ private String locale; private List commentBeans; + private int entryCount; + public void setLocale(String loc) { locale = loc; } @@ -19,13 +21,17 @@ commentBeans = cl; } - + public int getEntryCount() { + return entryCount; + } @Override public void onResult(ResponseContext context, CommentsResponse response) { //System.out.println("Response : " + response); //sb.append("Response: " + response + "\n"); + entryCount = response.getEntriesCount(); + System.out.println("Count="+entryCount); List cl = response.getCommentsList(); for (Comment c : cl) {