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