KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > swing > event > CellEditorListener


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 JavaDoc;
11 import java.util.EventListener JavaDoc;
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 JavaDoc {
22
23     /** This tells the listeners the editor has ended editing */
24     public void editingStopped(ChangeEvent JavaDoc e);
25
26     /** This tells the listeners the editor has canceled editing */
27     public void editingCanceled(ChangeEvent JavaDoc e);
28 }
29
30
Popular Tags