javax.swing.plaf.basic.BasicTextAreaUI Java Examples

The following examples show how to use javax.swing.plaf.basic.BasicTextAreaUI. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DefaultNotificationWindow.java    From 07kit with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Constructs a new display only {@link JTextArea}
 * @param text text that the {@link JTextArea} displays
 * @return a new display only {@link JTextArea}
 */
private JTextArea getTextAreaForDisplay(String text) {
	final JTextArea ta = new JTextArea(text);
	ta.setUI(new BasicTextAreaUI());
	ta.setEditable(false);
	ta.setFocusable(false);
	ta.setOpaque(false);
	ta.setWrapStyleWord(true);
	ta.setLineWrap(true);
	return ta;
}