*
* @param index index for the cell to edit
*/
public void editCell ( final int index )
{
final ListCellEditor cellEditor = getCellEditor ();
if ( index != -1 && cellEditor != null )
{
setSelectedIndex ( index );
cellEditor.startEdit ( this, index );
}
}