All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.vudroid.pdfdroid.codec.PdfContext Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package org.vudroid.pdfdroid.codec;

import android.content.ContentResolver;

import org.vudroid.core.VuDroidLibraryLoader;
import org.vudroid.core.codec.CodecContext;
import org.vudroid.core.codec.CodecDocument;

public class PdfContext implements CodecContext
{
    static
    {
        VuDroidLibraryLoader.load();
    }

    public CodecDocument openDocument(String fileName)
    {
        return PdfDocument.openDocument(fileName, "");
    }

    public void setContentResolver(ContentResolver contentResolver)
    {
        //TODO
    }

    public void recycle() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy