All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.media.common.PagedList Maven / Gradle / Ivy

The newest version!
package eleme.openapi.sdk.media.common;

import java.util.ArrayList;

/**
 * @author jinli Feb 5, 2015
 */
public class PagedList extends ArrayList {

    private static final long serialVersionUID = 1L;

    private int page;           // current page number
    private int pageSize;       // page size, items per page
    private int total;          // total count of items

    public PagedList(int page, int pageSize, int total) {
        this.page = page;
        this.pageSize = pageSize;
        this.total = total;
    }

    public int getPage() {
        return page;
    }

    public int getPageSize() {
        return pageSize;
    }

    public int getTotal() {
        return total;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy