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; // ww w . j a v a 2 s . c o m public class OutlineActivityData { public OutlineItem items[]; public int position; static private OutlineActivityData singleton; static public void set(OutlineActivityData d) { singleton = d; } static public OutlineActivityData get() { if (singleton == null) singleton = new OutlineActivityData(); return singleton; } }