* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The speak-numeral property.
*/
public FoValue traitSpeakNumeral(final FObj fobj, final FoContext context) {
final PdSpeakNumeral property = (PdSpeakNumeral) getProperty(
FoProperty.SPEAK_NUMERAL);
if (property != null) {
return property.getValue(context, fobj);
}
return PdSpeakNumeral.getValueNoInstance(context, fobj);
}