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