* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The empty-cells property.
*/
public FoValue traitEmptyCells(final FObj fobj, final FoContext context) {
final PdEmptyCells property = (PdEmptyCells) getProperty(
FoProperty.EMPTY_CELLS);
if (property != null) {
return property.getValue(context, fobj);
}
return PdEmptyCells.getValueNoInstance(context, fobj);
}