3

所以,我完成了一个数独求解器,但我想改进它。为此,我需要以某种方式betterJTextFielddocumentListener. 我正在使用documentListener实时读取我的betterJTextFields,我遇到的问题是在insertUpdate(DocumentEvent e).

我需要到达betterJTextfield发生DocumentEvent的地方。例如,如果输入无效,betterJTextfield则会变成红色等。

betterJTextfield如果你需要知道的话,我把所有的都放在一个矩阵中。数独中的每个字段都处理一个数字。

@Override
    public void insertUpdate(DocumentEvent e) {

       //Removed code which checks if the input in the betterJTextField is fine. 

    }

JFormattedTextfield延伸JTextField

public class betterJTextField extends JFormattedTextField {
private int row;
private int column;

public betterJTextField(Format format, int row, int column) {
    super(format);
    this.row = row;
    this.column = column;
    // TODO Auto-generated constructor stub
}

public int getRow() {
    return row;
}

public int getColumn() {
    return column;
}
4

1 回答 1

2

我不太明白你在问什么,但我相信这就是你要找的:

private static class RedDocumentListener implements DocumentListener {
    private JTextField textField;

    public RedDocumentListener(JTextField textField) {
        this.textField = textField;
    }
    @Override
    public void insertUpdate(DocumentEvent e) {
        textField.setBackground(Color.red);
    }
    @Override
    public void removeUpdate(DocumentEvent e) {
        textField.setBackground(Color.red);
    }
    @Override
    public void changedUpdate(DocumentEvent e) {
        textField.setBackground(Color.red);
    }
}
于 2013-03-20T22:17:04.070 回答