KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > chateverywhere > MyTextField


1 /* MyTextField
2  * simple JTextField that can receive a TAB key
3  */

4
5
6 package org.chateverywhere;
7
8 import javax.swing.JTextField JavaDoc;
9
10 public class MyTextField extends JTextField JavaDoc {
11
12     public boolean isManagingFocus() {
13         return true;
14     }
15 }
16
Popular Tags