1. Project Clover database Wed Jan 17 2024 23:40:18 CST
  2. Package org.europa.together.application.internal

File PdfDocument.java

 

Coverage histogram

../../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

0
2
2
1
19
11
2
1
1
2
1

Classes

Class Line # Actions
PdfDocument 10 2 0% 2 0
1.0100%
 

Contributing tests

This file is covered by 3 tests. .

Source view

1    package org.europa.together.application.internal;
2   
3    import com.lowagie.text.pdf.PdfReader;
4    import java.io.IOException;
5   
6    /**
7    * This class hides implementation details of the OpenPdf PdfReader class used
8    * in the API.
9    */
 
10    public class PdfDocument extends PdfReader {
11   
 
12  3 toggle public PdfDocument(final String filename) throws IOException {
13  3 super(filename);
14    }
15   
 
16  1 toggle public PdfDocument(final PdfReader reader) throws IOException {
17  1 super(reader);
18    }
19    }