Package org.cast.isi.component

Examples of org.cast.isi.component.PageNumberLink


   
    add(new PageLinkPanel("pageLinkPanel", new XmlSectionModel(currentSection), mSection));

    // Previous & Next Links
    int currentPageNum = ISIApplication.get().getStudentContent().getLabelIndex(ISIXmlSection.SectionType.PAGE, currentPage);
    add(new PageNumberLink("previousPage", currentPageNum-1));
    add(new PageNumberLink("nextPage", currentPageNum+1));

    add(new Label("sectionTitle", currentSection.getTitle()));   

    // If this is a student then add the checkbox for a student.  If this is a teacher then add the checkbox for the teacher
    if (!teacher) {
View Full Code Here

TOP

Related Classes of org.cast.isi.component.PageNumberLink

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.