01: package com.jidesoft.swing;
02:
03: import java.util.EventListener;
04:
05: /**
06: * Defines an object which listens for TabEditingEvent.
07: */
08: public interface TabEditingListener extends EventListener {
09: /**
10: * This tells the listeners the tab editing is started
11: */
12: public void editingStarted(TabEditingEvent e);
13:
14: /**
15: * This tells the listeners the tab editing is stopped
16: */
17: public void editingStopped(TabEditingEvent e);
18:
19: /**
20: * This tells the listeners the tab editing is canceled
21: */
22: public void editingCanceled(TabEditingEvent e);
23: }
|