Multiline Column Power Table

I was wondering if there is a way to make a column a multiline so that all words fit nicely. I have read there may be a way to do this using Java Swing JTable. Am I correct on this or is there another way.

To make the text wrap inside Power Table cell, use the configureCell extension function to configure the renderer:

[code] from javax.swing import JTextArea

jta = JTextArea(textValue)
jta.setLineWrap(True)
return {'renderer' : jta}[/code]