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