I have a JTextField with a listener for a change-text event.
Can I use this listener to affect the same object it is listening to? For instance, if it detects a "problematic" change, it should delete all the text in that same JTextField object.
Is this possible? It doesn't seem to work...
An example is as follows: .
this.txtSearch.getDocument().addDocumentListener(new DocumentListener() {
public void changedUpdate(DocumentEvent e) {
validate();
}
public void removeUpdate(DocumentEvent e) {
validate();
}
public void insertUpdate(DocumentEvent e) {
validate();
}
private void validate(){
if not_good(txtSearch.getText()) {
txtSearch.setText("");
}
}
Changing text in
JTextField
from atextChanged
event is likely to cause a (possibly infinite) loop oftextChanged
events. Do not do that.If you want to validate input to a
JTextField
rather useInputVerifier
.The javadoc contains some examples of how to use it, have a look.