Package com.jidesoft.swing
Interface TabEditingListener
-
- All Superinterfaces:
java.util.EventListener
public interface TabEditingListener extends java.util.EventListener
Defines an object which listens for TabEditingEvent.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
editingCanceled(TabEditingEvent e)
This tells the listeners the tab editing is canceledvoid
editingStarted(TabEditingEvent e)
This tells the listeners the tab editing is startedvoid
editingStopped(TabEditingEvent e)
This tells the listeners the tab editing is stopped
-
-
-
Method Detail
-
editingStarted
void editingStarted(TabEditingEvent e)
This tells the listeners the tab editing is started
-
editingStopped
void editingStopped(TabEditingEvent e)
This tells the listeners the tab editing is stopped
-
editingCanceled
void editingCanceled(TabEditingEvent e)
This tells the listeners the tab editing is canceled
-
-