Java tutorial
//package com.java2s; //License from project: Apache License import java.awt.event.FocusAdapter; import java.awt.event.FocusEvent; import javax.swing.text.JTextComponent; public class Main { public static void focusSelect(final JTextComponent tf) { tf.addFocusListener(new FocusAdapter() { public void focusGained(FocusEvent e) { tf.selectAll(); } }); } }