JTextField内で、エンターキーが押された場合のイベントを取得したい場合があります。KeyListenerとかじゃなくても、JTextFieldのインスタンスにActionListenerを追加するだけで出来ます。 (例) JTextField textField = new JTextField(); textField.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { eventMethod(); } });