* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The hyphenate property.
*/
public boolean getHyphenate(final FObj fobj, final FoContext context) {
final PdHyphenate property = (PdHyphenate) getProperty(
FoProperty.HYPHENATE);
if (property != null) {
return property.getValue(context, fobj);
}
return PdHyphenate.getValueNoInstance(context, fobj);
}