Examples of firstPage()


Examples of de.arago.portlet.util.Paginator.firstPage()

        List<Object> items = Arrays.asList(new Object[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13});

        Paginator pager = new Paginator(items.size(), 3);

        assertEquals(1, pager.firstPage());
        assertEquals(5, pager.lastPage());

        pager.go(1);
        assertEquals(1, pager.getCurrentPage());
        assertEquals(page1, pager.slice(items));
View Full Code Here

Examples of de.arago.portlet.util.Paginator.firstPage()

    public void testSmallerThanItemsPerPage() {
        List<Object> items = Arrays.asList(new Object[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13});

        Paginator pager = new Paginator(items.size(), 20);

        assertEquals(1, pager.firstPage());
        assertEquals(1, pager.lastPage());

        assertEquals(items, pager.slice(items));

    }
View Full Code Here

Examples of de.arago.portlet.util.Paginator.firstPage()

    public void testEven() {
        List<Object> items = Arrays.asList(new Object[] {1, 2, 3, 4});

        Paginator pager = new Paginator(items.size(), 2);

        assertEquals(1, pager.firstPage());
        assertEquals(2, pager.lastPage());
    }

    public void testUnEven() {
        List<Object> items = Arrays.asList(new Object[] {1, 2, 3});
View Full Code Here

Examples of de.arago.portlet.util.Paginator.firstPage()

    public void testUnEven() {
        List<Object> items = Arrays.asList(new Object[] {1, 2, 3});

        Paginator pager = new Paginator(items.size(), 2);

        assertEquals(1, pager.firstPage());
        assertEquals(2, pager.lastPage());
    }

    public void testSmallerThanItemsPerPageBug() {
        List<Object> items = Arrays.asList(new Object[] {1, 2, 3, 4});
View Full Code Here

Examples of de.arago.portlet.util.Paginator.firstPage()

        List<Object> items = Arrays.asList(new Object[] {1, 2, 3, 4});

        Paginator pager = new Paginator(items.size(), 20);

        pager.go(2);
        assertEquals(1, pager.firstPage());
        assertEquals(1, pager.lastPage());

        assertEquals(items, pager.slice(items));

    }
View Full Code Here

Examples of de.arago.portlet.util.Paginator.firstPage()

    public void testNullList() {
        Paginator pager = new Paginator(4, 4);

        pager.go(2);
        assertEquals(1, pager.firstPage());
        assertEquals(1, pager.lastPage());

        assertEquals(Collections.EMPTY_LIST, pager.slice(null));

    }
View Full Code Here

Examples of de.arago.portlet.util.Paginator.firstPage()

    public void testSmaller() {
        List<Object> items = Arrays.asList(new Object[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14});

        Paginator pager = new Paginator(items.size(), 5);

        assertEquals(1, pager.firstPage());
        assertEquals(3, pager.lastPage());
    }

    public void testBug() {
        // 20 and 34
View Full Code Here

Examples of de.arago.portlet.util.Paginator.firstPage()

        for (int i = 0; i < 34; ++i ) items.add(i);

        Paginator pager = new Paginator(items.size(), 20);

        assertEquals(1, pager.firstPage());
        assertEquals(2, pager.lastPage());
    }

}
View Full Code Here

Examples of org.cast.isi.ISIXmlSection.firstPage()

     ISIXmlSection currentSection = ((ISIXmlSection) mSection.getObject()); // May be itself
    SectionStatus currentSectionStatus = sectionService.getSectionStatus(mTargetUser.getObject(), currentSection);

    // Page Number Repeater
    RepeatingView pageRepeater = new RepeatingView("pageRepeater");
    int pageNumDisplay = ISIApplication.get().getStudentContent().getLabelIndex(ISIXmlSection.SectionType.PAGE, currentSection.firstPage());

    for(ISIXmlSection page = currentSection.firstPage(); page != null; page = page.getNext(), pageNumDisplay++) {
      WebMarkupContainer pageLinkContainer = new WebMarkupContainer(pageRepeater.newChildId());
      pageRepeater.add(pageLinkContainer);
     
View Full Code Here

Examples of org.cast.isi.ISIXmlSection.firstPage()

    // Page Number Repeater
    RepeatingView pageRepeater = new RepeatingView("pageRepeater");
    int pageNumDisplay = ISIApplication.get().getStudentContent().getLabelIndex(ISIXmlSection.SectionType.PAGE, currentSection.firstPage());

    for(ISIXmlSection page = currentSection.firstPage(); page != null; page = page.getNext(), pageNumDisplay++) {
      WebMarkupContainer pageLinkContainer = new WebMarkupContainer(pageRepeater.newChildId());
      pageRepeater.add(pageLinkContainer);
     
      BookmarkablePageLink<ISIStandardPage> link = new SectionLinkFactory().linkToPage("pageLink", page);
      pageLinkContainer.add(link);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.