ここで、InputVerifier をテキスト フィールド ( tf1
)に設定します。
public class MyInputVerifier extends InputVerifier {
@Override
public boolean verify(JComponent input) {
String text = ((JTextField) input).getText().trim();
if (text.isEmpty()) return false;
if (text.matches(".*\\d.*")) return false;
return true;
}
public static class Tester extends JFrame implements ActionListener {
JTextField tf1,tf2;
JButton okBtn;
public Tester() {
add(panel(), BorderLayout.CENTER);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(400, 500);
setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new Tester();
}
});
}
public JPanel panel() {
JPanel panel = new JPanel();
okBtn = new JButton("Ok");
okBtn.addActionListener(this);
tf1 = new JTextField(10);
tf2 = new JTextField(10);
tf1.setInputVerifier(new MyInputVerifier());
tf2.setInputVerifier(new MyInputVerifier());
panel.add(tf1);
panel.add(tf2);
panel.add(okBtn);
return panel;
}
@Override
public void actionPerformed(ActionEvent e) {
MyInputVerifier inputVerifier = new MyInputVerifier();
if (e.getSource() == okBtn) {
if (inputVerifier.verify(tf1)){
JOptionPane.showMessageDialog(null, "True Value");
}
else JOptionPane.showMessageDialog(null, "False Value");
}
}
}
}
ここで、入力ベリファイアを 2 番目のテキスト フィールド ( tf2
) に設定したいのですが、tf2
ベリファイアの条件が とは異なりtf1
ます。
たとえば、私verify()
ののは次のtf2
ようになります。
@Override
public boolean verify(JComponent input) {
String text = ((JTextField) input).getText().trim();
if (text.equalsIgnoreCase("Me")) return true;
return true;
}
その他のテキスト フィールドについても同様です。
1 つの拡張クラスで条件の異なる 2 つ以上のテキスト フィールドを検証する方法は?