public Paint getFontPaint(
      final Object candidate,
      final int x,
      final int y,
      final float coeff,
      final RenderingHints hints) {
    Paint paint;

    if (cachedFill != null) {
      paint = cachedFill.getJ2DPaint(candidate, x, y, coeff, hints);
    } else {
      paint = Color.BLACK;
    }

    return paint;
  }