com.adobe.xfa.text.TextGfxSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
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
}
}