* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The voice-family property.
*/
public String[] getVoiceFamily(final FObj fobj, final FoContext context) {
final PdVoiceFamily property = (PdVoiceFamily) getProperty(
FoProperty.VOICE_FAMILY);
if (property != null) {
return property.getValue(context, fobj);
}
return PdVoiceFamily.getValueNoInstance(context, fobj);
}