www in docker support
This commit is contained in:
parent
539a848e95
commit
c227fce036
2145 changed files with 399596 additions and 58 deletions
|
|
@ -0,0 +1,42 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue