* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The hyphenation-ladder-count property.
*/
public int traitHyphLadderCount(final FObj fobj, final FoContext context) {
final PdHyphenationLadderCount property = (PdHyphenationLadderCount)
getProperty(FoProperty.HYPHENATION_LADDER_COUNT);
if (property != null) {
return property.getValue(context, fobj);
}
return PdHyphenationLadderCount.getValueNoInstance(context, fobj);
}