Package com.jidesoft.swing
Interface TabEditingListener
-
- All Superinterfaces:
java.util.EventListener
public interface TabEditingListener extends java.util.EventListenerDefines an object which listens for TabEditingEvent.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voideditingCanceled(TabEditingEvent e)This tells the listeners the tab editing is canceledvoideditingStarted(TabEditingEvent e)This tells the listeners the tab editing is startedvoideditingStopped(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
-
-