Package org.eurekastreams.web.client.model.requests

Examples of org.eurekastreams.web.client.model.requests.GetGroupCoordinatorsRequest


     * Initialize.
     */
    public void init()
    {
        pager = new BasicPager();
        GetGroupCoordinatorsRequest req = new GetGroupCoordinatorsRequest(entityKey, coordinators);
        req.setEndIndex(pager.getEndItem());
        req.setStartIndex(pager.getStartItem());
        model.fetch(req, false);
    }
View Full Code Here


     * Next.
     */
    public void next()
    {
        pager.nextPage();
        GetGroupCoordinatorsRequest req = new GetGroupCoordinatorsRequest(entityKey, coordinators);
        req.setEndIndex(pager.getEndItem());
        req.setStartIndex(pager.getStartItem());
        model.fetch(req, false);
    }
View Full Code Here

     * Prev.
     */
    public void prev()
    {
        pager.previousPage();
        GetGroupCoordinatorsRequest req = new GetGroupCoordinatorsRequest(entityKey, coordinators);
        req.setEndIndex(pager.getEndItem());
        req.setStartIndex(pager.getStartItem());
        model.fetch(req, false);
    }
View Full Code Here

TOP

Related Classes of org.eurekastreams.web.client.model.requests.GetGroupCoordinatorsRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.