Back to project page RadaeePDF-B4A.
The source code is released under:
Apache License
If you think the Android project RadaeePDF-B4A 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.rootsoft.rspdfviewer.pdf; /* w ww. j a v a2s . c o m*/ import anywheresoftware.b4a.AbsObjectWrapper; import anywheresoftware.b4a.BA.Hide; import anywheresoftware.b4a.BA.ShortName; import com.radaee.pdf.Page; @ShortName("PDF") @Hide public class RSPDFTemplate extends AbsObjectWrapper<Page> { //Attributes //Constructors - Initialization /** * Initializes the PDFDocument. */ public void Initialize() { setObject(new Page()); } }