Back to project page FreePdfParser.
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.
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; } }