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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy