attrs.put(TextAttribute.FONT, joglRenderer.getFont());
AttributedString str = new AttributedString(paragraph, attrs);
LineBreakMeasurer measurer = new LineBreakMeasurer(str.getIterator(), frc);
int curPos = 0;
while (measurer.getPosition() < paragraph.length()) {
int nextPos = measurer.nextOffset(width);
String line = paragraph.substring(curPos, nextPos);
TextDataImpl.TextLine textLine = new TextDataImpl.TextLine(line);
//Rectangle2D bounds = renderer.getBounds(line);
if (nextPos < paragraph.length()) {
flowList.add(textLine);