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