Java JTextComponent Select selectAll(final JTextComponent textComponent)

Here you can find the source of selectAll(final JTextComponent textComponent)

Description

Selects all contents of a text component.

License

Open Source License

Parameter

Parameter Description
textComponent a parameter

Declaration

public static void selectAll(final JTextComponent textComponent) 

Method Source Code

//package com.java2s;
/*//  www  . j a  va2  s  . co m
 * $Id: TextComponentUtil.java,v 1.14 2005/04/15 15:03:15 ahmed Exp $
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

import javax.swing.text.JTextComponent;

public class Main {
    /**
     * Selects all contents of a text component.
     * 
     * @param textComponent
     */
    public static void selectAll(final JTextComponent textComponent) {
        if (!textComponent.hasFocus()) {
            textComponent.requestFocus();
        }
        textComponent.selectAll();
    }
}

Related

  1. addSelectAllTextOnFocus(final JTextComponent component)
  2. focusSelect(final JTextComponent tf)
  3. isSelectionUpperCase(JTextComponent textPane)
  4. replaceSelectionAndSelect(JTextComponent component, String text)
  5. selectAll(JTextComponent textComponent)
  6. selectAllOnFocus(JTextComponent textComponent)
  7. selectAndRequestFocus(JTextComponent editor)
  8. selectFirstArg(String strText, int initialSelectionStart, JTextComponent editor)