org.jdesktop.swingx.plaf.PromptTextAreaUI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swingx-all Show documentation
Show all versions of swingx-all Show documentation
Fork of the inactive swingx-all library
package org.jdesktop.swingx.plaf;
import javax.swing.JTextArea;
import javax.swing.plaf.TextUI;
import javax.swing.text.JTextComponent;
/**
* {@link PromptTextUI} implementation for rendering prompts on
* {@link JTextArea}s and uses a {@link JTextArea} as a prompt component.
*
* @author Peter Weishapl
*/
public class PromptTextAreaUI extends PromptTextUI {
/**
* Shared prompt renderer.
*/
private static final JTextArea txt = new JTextArea();
/**
* Creates a new {@link PromptTextAreaUI}.
*
* @param delegate
*/
public PromptTextAreaUI(TextUI delegate) {
super(delegate);
}
/**
* Overrides {@link #getPromptComponent(JTextComponent)} to additionally
* update {@link JTextArea} specific properties.
*/
@Override
public JTextComponent getPromptComponent(JTextComponent txt) {
JTextArea lbl = (JTextArea) super.getPromptComponent(txt);
JTextArea txtArea = (JTextArea) txt;
lbl.setColumns(txtArea.getColumns());
lbl.setRows(txtArea.getRows());
return lbl;
}
/**
* Returns a shared {@link JTextArea}.
*/
@Override
protected JTextComponent createPromptComponent() {
txt.updateUI();
return txt;
}
}