Here you can find the source of setTextAndResetCaret(JTextComponent component, String text)
public static void setTextAndResetCaret(JTextComponent component, String text)
//package com.java2s; /*/*from www . j a va 2 s. c o m*/ * SK's Minecraft Launcher * Copyright (C) 2010-2014 Albert Pham <http://www.sk89q.com> and contributors * Please see LICENSE.txt for license information. */ import javax.swing.text.JTextComponent; public class Main { public static void setTextAndResetCaret(JTextComponent component, String text) { component.setText(text); component.setCaretPosition(0); } }