www in docker support

This commit is contained in:
MaddoScientisto 2026-04-22 18:41:37 +02:00
commit c227fce036
2145 changed files with 399596 additions and 58 deletions

View file

@ -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;
}
}