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