how to set the focus in the JTextField??
|
|
requestFocus() can be used but is discouraged as it is platform dependent. See here for more details |
||
|
|
|
|
The abstract class Component which JTextField extends provides a requestFocus() method.
|
||
|
|
|
|
JTextField extends JComponent so JTextField would have this method. |
|||
|
|
