Spring Social Facebook

org.springframework.social.facebook.api
Class ListAndCount<T>

java.lang.Object
  extended by org.springframework.social.facebook.api.ListAndCount<T>

public class ListAndCount<T>
extends java.lang.Object

Contains a list of comments and a count of the total number of comments for a post or checkin. This type is not intended for direct use and is not exposed by either the Post or Checkin type. Instead, the comments list and count are available through Comment.getComments(), Post.getComments(), and Post.getCommentCount().

Author:
habuma

Constructor Summary
ListAndCount(java.util.List<T> list, int count)
           
 
Method Summary
 int getCount()
           
 java.util.List<T> getList()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ListAndCount

public ListAndCount(java.util.List<T> list,
                    int count)
Method Detail

getCount

public int getCount()

getList

public java.util.List<T> getList()

Spring Social Facebook