home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-06-30 | 2.4 KB | 67 lines |
- /*
- * @(#)TableCellEditor.java 1.8 98/01/30
- *
- * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the confidential and proprietary information of Sun
- * Microsystems, Inc. ("Confidential Information"). You shall not
- * disclose such Confidential Information and shall use it only in
- * accordance with the terms of the license agreement you entered into
- * with Sun.
- *
- * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
- * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
- * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
- * THIS SOFTWARE OR ITS DERIVATIVES.
- *
- */
-
- package com.sun.java.swing.table;
-
- import java.awt.Component;
- import com.sun.java.swing.CellEditor;
- import com.sun.java.swing.*;
-
- /**
- * This interface defines the methods any object that would like to be
- * an editor of values for components such as ListBox, ComboBox, Tree, or
- * Table, etc.
- *
- * @version 1.8 01/30/98
- * @author Alan Chung
- */
-
-
- public interface TableCellEditor extends CellEditor {
-
- /**
- * Sets an initial <I>value</I> for the editor. This will cause
- * the editor to stopEditing and lose any partially edited value
- * if the editor is editing when this method is called. <p>
- *
- * Returns the component that should be added to the client's
- * Component hierarchy. Once installed in the client's hierarchy
- * this component will then be able to draw and receive user input.
- *
- * @param table the JTable that is asking the editor to edit
- * This parameter can be null.
- * @param value the value of the cell to be edited. It is
- * up to the specific editor to interpret
- * and draw the value. eg. if value is the
- * String "true", it could be rendered as a
- * string or it could be rendered as a check
- * box that is checked. null is a valid value.
- * @param isSelected true is the cell is to be renderer with
- * selection highlighting
- * @param row the row of the cell being edited
- * @param column the column of the cell being edited
- * @return the component for editing
- */
- Component getTableCellEditorComponent(JTable table, Object value,
- boolean isSelected,
- int row, int column);
- }
-
-