com.fg.ftree
Interface FTreeEditorListener

All Superinterfaces:
java.util.EventListener

public interface FTreeEditorListener
extends java.util.EventListener

Interface defines an object which listens for FTree field editing events (editing started, will stop, stopped, value changed). User code can cancel editing (discard changes) by invoking FTreeEditorEvent.cancelEditing() method from the cellEditingWillStop(FTreeEditorEvent) method.

Version:
1.0
Author:
Felix Golubov
See Also:
FTreeEditorEvent, FTree

Method Summary
 void cellEditingStarted(FTreeEditorEvent e)
           
 void cellEditingStopped(FTreeEditorEvent e)
           
 void cellEditingWillStop(FTreeEditorEvent e)
           
 void cellEditorValueChanged(FTreeEditorEvent e)
           
 

Method Detail

cellEditingStarted

public void cellEditingStarted(FTreeEditorEvent e)

cellEditingWillStop

public void cellEditingWillStop(FTreeEditorEvent e)

cellEditingStopped

public void cellEditingStopped(FTreeEditorEvent e)

cellEditorValueChanged

public void cellEditorValueChanged(FTreeEditorEvent e)