1. /*
  2. * @(#)CellEditorListener.java 1.10 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package javax.swing.event;
  11. import javax.swing.event.ChangeEvent;
  12. import java.util.EventListener;
  13. /**
  14. * CellEditorListener defines the interface for an object that listens
  15. * to changes in a CellEditor
  16. *
  17. * @version 1.10 02/02/00
  18. * @author Alan Chung
  19. */
  20. public interface CellEditorListener extends java.util.EventListener {
  21. /** This tells the listeners the editor has ended editing */
  22. public void editingStopped(ChangeEvent e);
  23. /** This tells the listeners the editor has canceled editing */
  24. public void editingCanceled(ChangeEvent e);
  25. }