Example usage for org.apache.pdfbox.cos COSDocument addXRefTable

List of usage examples for org.apache.pdfbox.cos COSDocument addXRefTable

Introduction

In this page you can find the example usage for org.apache.pdfbox.cos COSDocument addXRefTable.

Prototype

public void addXRefTable(Map<COSObjectKey, Long> xrefTableValues) 

Source Link

Document

Populate XRef HashMap with given values.

Usage

From source file:org.apache.padaf.preflight.utils.TestCOSUtils.java

License:Apache License

protected void addToXref(COSDocument doc, COSObjectKey key, long value) {
    Map<COSObjectKey, Long> xrefTable = new HashMap<COSObjectKey, Long>(1);
    xrefTable.put(key, value);/*from  w  w  w. j  a va2s  .co m*/
    doc.addXRefTable(xrefTable);
}