com.dynamicpdf.api.PdfContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynamicpdf-api Show documentation
Show all versions of dynamicpdf-api Show documentation
A Java Client API that uses the DynamicPDF API to create, merge, split, form fill, stamp, secure/encrypt PDF documents.
package com.dynamicpdf.api;
/**
* Represents the pdf content
*/
public class PdfContent {
private int pageNumber;
private String text;
/**
* Gets or sets the page number.
* @return The page number.
*/
public int getPageNumber() {
return pageNumber;
}
/**
* Sets the page number.
* @param value The page number.
*/
public void setPageNumber(int value) {
pageNumber = value;
}
/**
* Gets the text in the pdf.
* @return The text in the pdf.
*/
public String getText() {
return text;
}
/**
* Gets the text in the pdf.
* @param value The text in the pdf.
*/
public void setText(String value) {
text = value;
}
}