Android Open Source - FreePdfParser Outline Item






From Project

Back to project page FreePdfParser.

License

The source code is released under:

GNU General Public License

If you think the Android project FreePdfParser listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.artifex.mupdf;
/*from  w w w. j a v  a  2 s . c o m*/
public class OutlineItem {
  public final int    level;
  public final String title;
  public final int    page;

  OutlineItem(int _level, String _title, int _page) {
    level = _level;
    title = _title;
    page  = _page;
  }

}




Java Source Code List

com.artifex.mupdf.LinkInfo.java
com.artifex.mupdf.MuPDFCore.java
com.artifex.mupdf.OutlineItem.java
com.newfrontiernomads.pdf.Intents.java
com.newfrontiernomads.pdf.NFNPdfConvertActivity.java
com.newfrontiernomads.pdf.PdfMainActivity.java