com.dynamicpdf.api.FontInformation 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;
class FontInformation {
private String fontName;
private String filePath;
FontInformation(String fontName, String filePath) {
this.fontName = fontName;
this.filePath = filePath;
}
String getFontName() {
return this.fontName;
}
String getFilePath() {
return this.filePath;
}
}