* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The ends-row property.
*/
public boolean traitEndsRow(final FObj fobj, final FoContext context) {
final PdEndsRow property = (PdEndsRow) getProperty(
FoProperty.ENDS_ROW);
if (property != null) {
return property.getValue(context, fobj);
}
return PdEndsRow.getValueNoInstance();
}