* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The color property.
*/
public java.awt.Color getColor(final FObj fobj, final FoContext context) {
final PdColor property = (PdColor) getProperty(FoProperty.COLOR);
if (property != null) {
return property.getValue(context, fobj);
}
return PdColor.getValueNoInstance(context, fobj);
}