* issues.
* @return The font-style property.
*/
public org.axsl.font.Font.Style getFontStyle(final FObj fobj,
final FoContext context) {
PdFontStyle property = (PdFontStyle) getProperty(FoProperty.FONT_STYLE);
if (property != null) {
return property.getValue(context, fobj);
}
// Try the shorthand
final PdFont fontProperty = (PdFont) getProperty(FoProperty.FONT);
if (fontProperty != null) {
property = fontProperty.getStyle();
return property.getValue(context, fobj);
}
return PdFontStyle.getValueNoInstance(context, fobj);
}