PDFPageAndAnnotation.java
1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.internal.pdftoolkit.core.cos.CosObject
* com.adobe.internal.pdftoolkit.pdf.interactive.annotation.PDFAnnotation
* com.adobe.internal.pdftoolkit.pdf.page.PDFPage
*/
package com.adobe.fd.output.internal;
import com.adobe.internal.pdftoolkit.core.cos.CosObject;
import com.adobe.internal.pdftoolkit.pdf.interactive.annotation.PDFAnnotation;
import com.adobe.internal.pdftoolkit.pdf.page.PDFPage;
public class PDFPageAndAnnotation {
private PDFPage page = null;
private PDFAnnotation pdfAnnotation = null;
private CosObject appearanceCosObject = null;
public PDFPageAndAnnotation() {
}
public PDFPageAndAnnotation(PDFPage page, PDFAnnotation pdfAnnotation, CosObject cosObject) {
this.page = page;
this.pdfAnnotation = pdfAnnotation;
this.appearanceCosObject = cosObject;
}
public PDFPage getPage() {
return this.page;
}
public void setPage(PDFPage page) {
this.page = page;
}
public PDFAnnotation getPdfAnnotation() {
return this.pdfAnnotation;
}
public void setPdfAnnotation(PDFAnnotation pdfAnnotation) {
this.pdfAnnotation = pdfAnnotation;
}
public CosObject getAppearanceCosObject() {
return this.appearanceCosObject;
}
public void setAppearanceCosObject(CosObject appearanceCosObject) {
this.appearanceCosObject = appearanceCosObject;
}
}