if (abstractBorderColor != null) {
return abstractBorderColor.getValue(direction, fobj, context);
}
/* Now try the low-level shorthand, that is, "border-color". */
final PdBorderColor borderColor = (PdBorderColor) getProperty(
FoProperty.BORDER_COLOR);
if (borderColor != null) {
return borderColor.getValue(direction, fobj, context);
}
/* Now try the high-level shorthand, that is, "border". */
final AbstractBorder border = (AbstractBorder) getProperty(
FoProperty.BORDER);