All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dynamicpdf.api.PdfContent Maven / Gradle / Ivy

Go to download

A Java Client API that uses the DynamicPDF API to create, merge, split, form fill, stamp, secure/encrypt PDF documents.

There is a newer version: 1.10.1
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy