Package org.moxie

Examples of org.moxie.DocPage


    favicon = new Logo();
    return favicon;   
  }

  public DocPage createPage() {
    DocPage page = new DocPage();   
    doc.freeformPages.add(page);
    return page;
  }
View Full Code Here


          if (subElement instanceof DocPage) {
            prepareTemplatePage((DocPage) subElement);

            if (menu.showPager) {
              // link to previous page
              DocPage page = (DocPage) subElement;
              DocElement prev = i == 0 ? null : menu.elements.get(i - 1);
              if (prev != null && prev instanceof DocPage) {
                page.prevPage = (DocPage) prev;
              }
View Full Code Here

TOP

Related Classes of org.moxie.DocPage

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.