com.alee.laf.list.editor
Class ListEditAdapter

java.lang.Object
  extended by com.alee.laf.list.editor.ListEditAdapter
All Implemented Interfaces:
ListEditListener, java.util.EventListener

public abstract class ListEditAdapter
extends java.lang.Object
implements ListEditListener

ListEditListener interface adapter.

Author:
Mikle Garin

Constructor Summary
ListEditAdapter()
           
 
Method Summary
 void editCancelled(int index)
          Informs that editing was cancelled.
 void editFinished(int index, java.lang.Object oldValue, java.lang.Object newValue)
          Informs that editing was finished.
 void editStarted(int index)
          Informs that editing was started.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ListEditAdapter

public ListEditAdapter()
Method Detail

editStarted

public void editStarted(int index)
Informs that editing was started.

Specified by:
editStarted in interface ListEditListener
Parameters:
index - edited cell index

editFinished

public void editFinished(int index,
                         java.lang.Object oldValue,
                         java.lang.Object newValue)
Informs that editing was finished.

Specified by:
editFinished in interface ListEditListener
Parameters:
index - edited cell index
oldValue - old cell value
newValue - new cell value

editCancelled

public void editCancelled(int index)
Informs that editing was cancelled.

Specified by:
editCancelled in interface ListEditListener
Parameters:
index - edited cell index