* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The speech-rate property.
*/
public double traitSpeechRate(final FObj fobj, final FoContext context) {
final PdSpeechRate property = (PdSpeechRate) getProperty(
FoProperty.SPEECH_RATE);
if (property != null) {
return property.getValue(context, fobj);
}
return PdSpeechRate.getValueNoInstance(context, fobj);
}