/[classpath]/classpath/javax/swing/CellEditor.java
ViewVC logotype

Diff of /classpath/javax/swing/CellEditor.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by mark, Tue Apr 30 21:37:27 2002 UTC revision 1.3 by aselkirk, Tue May 21 03:03:48 2002 UTC
# Line 1  Line 1 
1  /* CellEditor.java --  /* CellEditor.java --
2     Copyright (C) 2002 Free Software Foundation, Inc.     Copyright (C) 2002 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
# Line 36  obligated to do so.  If you do not wish Line 36  obligated to do so.  If you do not wish
36  exception statement from your version. */  exception statement from your version. */
37    
38  package javax.swing;  package javax.swing;
39    
40    // Imports
41    import java.util.*;
42    import javax.swing.event.*;
43    
44  /**  /**
45   * STUBBED   * CellEditor
46     * @author      Andrew Selkirk
47     * @version     1.0
48   */   */
49  public interface CellEditor  public interface CellEditor {
50  {  
51  } // interface CellEditor          //-------------------------------------------------------------
52            // Methods ----------------------------------------------------
53            //-------------------------------------------------------------
54    
55            /**
56             * getCellEditorValue
57             * @returns Object
58             */
59            public Object getCellEditorValue();
60    
61            /**
62             * isCellEditable
63             * @param event TODO
64             * @returns boolean
65             */
66            public boolean isCellEditable(EventObject event);
67    
68            /**
69             * shouldSelectCell
70             * @param event TODO
71             * @returns boolean
72             */
73            public boolean shouldSelectCell(EventObject event);
74    
75            /**
76             * stopCellEditing
77             * @returns boolean
78             */
79            public boolean stopCellEditing();
80    
81            /**
82             * cancelCellEditing
83             */
84            public void cancelCellEditing();
85    
86            /**
87             * addCellEditorListener
88             * @param value0 TODO
89             */
90            public void addCellEditorListener(CellEditorListener listener);
91    
92            /**
93             * removeCellEditorListener
94             * @param listener TODO
95             */
96            public void removeCellEditorListener(CellEditorListener listener);
97    
98    
99    } // CellEditor

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26