TextField get focus by mouse?

publicvoid actionPerformed(ActionEvent actionevent){

if ( textField.isFocusOwner()==true)

{

if(textField.getText().equals("Please input text") )

textField.setText("");

}

}

But TextField get focus by pressing "Enter key".

How could i use mouse to get focus in TextField?

Thanks a lot !!

[667 byte] By [little1981a] at [2007-10-2 2:11:42]
# 1
you can add a mouse listener to you frame so whenever someone clicks any of the mouse buttons it will give the text field the focus. Is that what you are looking for?
Furya at 2007-7-15 19:52:38 > top of Java-index,Archived Forums,Java 2 Software Development Kit (J2SE SDK)...
# 2
or you could just apply the mouseListener to the text field like you did above...
Furya at 2007-7-15 19:52:38 > top of Java-index,Archived Forums,Java 2 Software Development Kit (J2SE SDK)...