/*
* @(#)CaretListener.java 1.10 05/11/17
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package javax.swing.event;
import java.util.EventListener;
/**
* Listener for changes in the caret position of a text
* component.
*
* @version 1.10 11/17/05
* @author Timothy Prinzing
*/
public interface CaretListener extends EventListener {
/**
* Called when the caret position is updated.
*
* @param e the caret event
*/
void caretUpdate(CaretEvent e);
}
|