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 ww.j a va2s.c o m import android.graphics.RectF; public class LinkInfo extends RectF { public int pageNumber; public LinkInfo(float l, float t, float r, float b, int p) { super(l, t, r, b); pageNumber = p; } }