Example usage for twitter4j CursorSupport getNextCursor

List of usage examples for twitter4j CursorSupport getNextCursor

Introduction

In this page you can find the example usage for twitter4j CursorSupport getNextCursor.

Prototype

long getNextCursor();

Source Link

Usage

From source file:de.vanita5.twittnuker.loader.support.BaseCursorSupportUsersLoader.java

License:Open Source License

protected final void setCursorIds(final CursorSupport cursor) {
    if (cursor == null)
        return;//from  www .j  av  a  2 s  .com
    mNextCursor = cursor.getNextCursor();
    mPrevCursor = cursor.getPreviousCursor();
}