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. package javax.swing.event;
  8. import javax.swing.event.ChangeEvent;
  9. import java.util.EventListener;
  10. /**
  11. * CellEditorListener defines the interface for an object that listens
  12. * to changes in a CellEditor
  13. *
  14. * @version 1.13 12/19/03
  15. * @author Alan Chung
  16. */
  17. public interface CellEditorListener extends java.util.EventListener {
  18. /** This tells the listeners the editor has ended editing */
  19. public void editingStopped(ChangeEvent e);
  20. /** This tells the listeners the editor has canceled editing */
  21. public void editingCanceled(ChangeEvent e);
  22. }