42 lines
839 B
Java
42 lines
839 B
Java
|
|
package it.acxent.contab;
|
||
|
|
|
||
|
|
import com.lowagie.text.Document;
|
||
|
|
import com.lowagie.text.Table;
|
||
|
|
|
||
|
|
public class DocumentoPDF {
|
||
|
|
private Document document;
|
||
|
|
|
||
|
|
private Table pdfcorpo;
|
||
|
|
|
||
|
|
public DocumentoPDF(Document document, Table pdfcorpo, int pageNumber) {
|
||
|
|
this.document = document;
|
||
|
|
this.pdfcorpo = pdfcorpo;
|
||
|
|
this.pageNumber = pageNumber;
|
||
|
|
}
|
||
|
|
|
||
|
|
private int pageNumber = 0;
|
||
|
|
|
||
|
|
public Document getDocument() {
|
||
|
|
return this.document;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDocument(Document document) {
|
||
|
|
this.document = document;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Table getPdfcorpo() {
|
||
|
|
return this.pdfcorpo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPdfcorpo(Table pdfcorpo) {
|
||
|
|
this.pdfcorpo = pdfcorpo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public int getPageNumber() {
|
||
|
|
return this.pageNumber;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPageNumber(int pageNumber) {
|
||
|
|
this.pageNumber = pageNumber;
|
||
|
|
}
|
||
|
|
}
|