1 /* MyTextField2 * simple JTextField that can receive a TAB key3 */ 4 5 6 package org.chateverywhere;7 8 import javax.swing.JTextField ;9 10 public class MyTextField extends JTextField {11 12 public boolean isManagingFocus() {13 return true;14 }15 }16