1 /* 2 * @(#)CellEditorListener.java 1.13 03/12/19 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package javax.swing.event; 9 10 import javax.swing.event.ChangeEvent; 11 import java.util.EventListener; 12 13 /** 14 * CellEditorListener defines the interface for an object that listens 15 * to changes in a CellEditor 16 * 17 * @version 1.13 12/19/03 18 * @author Alan Chung 19 */ 20 21 public interface CellEditorListener extends java.util.EventListener { 22 23 /** This tells the listeners the editor has ended editing */ 24 public void editingStopped(ChangeEvent e); 25 26 /** This tells the listeners the editor has canceled editing */ 27 public void editingCanceled(ChangeEvent e); 28 } 29 30