実行時に Text を JTextFields の null に設定する方法を教えてください。長さが "13" に等しいときにテキストフィールドを空にしたいです。ユーザーに The text (code has size 13 max) を入力するように求め、その後、入力は別のプロセスのために null に変更されます。
code = new JextField(15);
code.setForeground(new Color(30, 144, 255));
code.setFont(new Font("Tahoma", Font.PLAIN, 16));
code.setHorizontalAlignment(SwingConstants.CENTER);
code.setBounds(351, 76, 251, 38);
panel_2.add(code);
code.getDocument().addDocumentListener(new DocumentListener() {
public void changedUpdate(DocumentEvent e) {
test();
}
public void removeUpdate(DocumentEvent e) {
test();
}
public void insertUpdate(DocumentEvent e) {
test();
}
public void test() {
if(code.getText().length()==13){
code.setText("");
}
}
次のエラーが表示されます:
java.lang.IllegalStateException: Attempt to mutate in notification
at javax.swing.text.AbstractDocument.writeLock(Unknown Source)
at javax.swing.text.AbstractDocument.replace(Unknown Source)
at javax.swing.text.JTextComponent.setText(Unknown Source)