Ontimize 5.2072EN

com.ontimize.gui.table
Interface TableEditorListener

All Superinterfaces:
java.util.EventListener

public interface TableEditorListener
extends java.util.EventListener

Interface to manage edition events in table cells.

Author:
Imatia Innovation SL
See Also:
Table.addTableEditorListener(TableEditorListener)

Method Summary
 void editingCanceled(TableEditionEvent e)
          This method is called when edition is cancelled.
 void editingStopped(TableEditionEvent e)
          This method is called when edition is finished.
 void editingWillStop(TableEditionEvent e)
          This method is called just before edition is finished.
 

Method Detail

editingWillStop

public void editingWillStop(TableEditionEvent e)
                     throws EditingVetoException
This method is called just before edition is finished.

Parameters:
e - Object with TableEditionEvent
Throws:
EditingVetoException - When occurs an Exception editing

editingStopped

public void editingStopped(TableEditionEvent e)
This method is called when edition is finished.

Parameters:
e - Object with TableEditionEvent

editingCanceled

public void editingCanceled(TableEditionEvent e)
This method is called when edition is cancelled.

Parameters:
e - Object with TableEditionEvent

Ontimize