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

com.adobe.xfa.text.TextGfxSource Maven / Gradle / Ivy

The newest version!
package com.adobe.xfa.text;

import com.adobe.xfa.font.FontInstance;
import com.adobe.xfa.font.FontService;

/**
 *
 * @exclude from published api.
 */
public final class TextGfxSource {
	final private FontService mFontService;

	public TextGfxSource (FontService fontService) {
		mFontService = fontService;
	}

	public FontService getFontService () {
		return mFontService;
	}

	public FontInstance reconcileFont (FontInstance fontInstance, int c) {
		return fontInstance;	// TODO: AFE doesn't support reconciliation
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy