WebObjects 5.2.3

com.webobjects.eointerface.swing
Interface EOSwingTableColumnPlugin.TableColumnCustomizer

Enclosing interface:
EOSwingTableColumnPlugin

public static interface EOSwingTableColumnPlugin.TableColumnCustomizer

Use this interface to implement your custom TableColumnCustomizer which will be used to obtain the CellRenderer and CellEditor for this plugin's column. (See Java Swing documentation.) The TableColumnCustomizer should be set before establishConnection is called, otherwise the internal defaultTableColumnCustomizer is used which returns a EOTextColumnEditor and a DefaultTableCellRenderer.


Method Summary
 EOColumnEditor editorForAssociation(EOTableColumnAssociation association)
          Returns an EOColumnEditor which will be used as a TableCellEditor for this column.
 TableCellRenderer rendererForAssociation(EOTableColumnAssociation association)
          Returns an TableCellRenderer to be used for this column.
 

Method Detail

editorForAssociation

public EOColumnEditor editorForAssociation(EOTableColumnAssociation association)
Returns an EOColumnEditor which will be used as a TableCellEditor for this column. Since the editor needs to communicate with other parts of this framework, it needs to be a subclass of EOColumnEditor See also EOColumnEditor and EOTextColumnEditor, as well as the Swing documentation for TableCellEditor.

Parameters:
association - the EOTableColumnAssociation for which to return an editor; this is supplied as a parameter so that the same TableColumnCustomizer can be used for multiple columns
Returns:
EOColumnEditor a subclass of EOColumnEditor to be used for this column

rendererForAssociation

public TableCellRenderer rendererForAssociation(EOTableColumnAssociation association)
Returns an TableCellRenderer to be used for this column. See the Swing documentation on the TableCellRenderer class.

Parameters:
association - the EOTableColumnAssociation for which to return an editor; this is supplied as a parameter so that the same TableColumnCustomizer can be used for multiple columns
Returns:
TableCellRenderer a subclass of TableCellRenderer to be used for this column

Last updated Thu Oct 21 15:04:16 PDT 2004.

Copyright © 2004 Apple Computer, Inc.