static void enableWordWrapForTextArea(final JTextArea ta) { if (ta != null) swing { ta.setLineWrap(true); ta.setWrapStyleWord(true); } }