private void drawTextDecoration(final FontDecorationSpec decorationSpec)
{
final Graphics2D graphics = (Graphics2D) getGraphics().create();
graphics.setColor(decorationSpec.getTextColor());
graphics.setStroke(new BasicStroke((float) decorationSpec.getLineWidth()));
graphics.draw(new Line2D.Double(decorationSpec.getStart(), decorationSpec.getVerticalPosition(),
decorationSpec.getEnd(), decorationSpec.getVerticalPosition()));
graphics.dispose();
}
protected void processParagraphChilds(final ParagraphRenderBox box)