Interface LikesSummary


@Exported public interface LikesSummary
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Retrieve the number of people who like it.
    Retrieve the Like object for the current user.
    void
    setCount(int count)
    Set the number of people who like it.
    void
    Set the Like object for the current user.
  • Method Details

    • getCount

      int getCount()
      Retrieve the number of people who like it.
      Returns:
      the number of people.
    • setCount

      void setCount(int count)
      Set the number of people who like it.
    • getMyLike

      Like getMyLike()
      Retrieve the Like object for the current user. If the current user didn't express like on this object, it will return null.
      Returns:
      The Like object.
    • setMyLike

      void setMyLike(Like like)
      Set the Like object for the current user.