Back to project page PDF2ImageForEP.
The source code is released under:
GNU General Public License
If you think the Android project PDF2ImageForEP 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; // w w w . ja va 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; } }