Package com.lowagie.rups.view.itext

Examples of com.lowagie.rups.view.itext.XRefTable


    addObserver(pages);
    outlines = new OutlineTree(this);
    addObserver(outlines);
    form = new FormTree(this);
    addObserver(form);
    xref = new XRefTable(this);
    addObserver(xref);
    navigationTabs = new JTabbedPane();
    navigationTabs.addTab("Pages", null, RupsController.getScrollPane(pages), "Pages");
    navigationTabs.addTab("Outlines", null, RupsController.getScrollPane(outlines), "Outlines (Bookmarks)");
    navigationTabs.addTab("Form", null, RupsController.getScrollPane(form), "Interactive Form");
View Full Code Here


    addObserver(pages);
    outlines = new OutlineTree(this);
    addObserver(outlines);
    form = new FormTree(this);
    addObserver(form);
    xref = new XRefTable(this);
    addObserver(xref);
    navigationTabs = new JTabbedPane();
    navigationTabs.addTab("Pages", null, new JScrollPane(pages), "Pages");
    navigationTabs.addTab("Outlines", null, new JScrollPane(outlines), "Outlines (Bookmarks)");
    navigationTabs.addTab("Form", null, new JScrollPane(form), "Interactive Form");
View Full Code Here

TOP

Related Classes of com.lowagie.rups.view.itext.XRefTable

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.