org.peace_tools.generic.dndTabs
Interface DnDTabListener

All Known Implementing Classes:
MainFrame.DefaultViewFactory, ViewFactory

public interface DnDTabListener

Interface to announce deletion of a tab in a DnDTabbedPane. This interface is used to announce the fact that a given tab has been deleted by the user. This listener is a bit peculiar in that when added to a DnDTabbedPane the listener is automatically duplicated in other DnDTabPanes that are created.

Note: It is best to set a listener on the top-level DnDTabPane in the system and have it propagate to all the underlying DnDTabPanes.


Method Summary
 void tabDeleted(java.awt.Component tab)
          Method to report the fact that a tab has been deleted.
 

Method Detail

tabDeleted

void tabDeleted(java.awt.Component tab)
Method to report the fact that a tab has been deleted.

Parameters:
tab - The tab that was removed from a DnDTabbedPane.