Uses of Interface
bibliothek.gui.dock.event.DockFrontendListener

Packages that use DockFrontendListener
bibliothek.gui The high level interfaces of the framework and the most often used classes. 
bibliothek.gui.dock.event Listeners, adapters and events used in the whole framework.
A Listener is added to some object that needs to be observed, the Listener will be informed whenever the observed object changes. An Adapter is an implementation of a Listener, but the methods of an Adapter are empty. An Event is an object carrying information from an observed object to a Listener.  
 

Uses of DockFrontendListener in bibliothek.gui
 

Methods in bibliothek.gui that return DockFrontendListener
protected  DockFrontendListener[] DockFrontend.listeners()
          Gets an independent array containing all currently registered listeners.
 

Methods in bibliothek.gui with parameters of type DockFrontendListener
 void DockFrontend.addFrontendListener(DockFrontendListener listener)
          Adds a listener to this frontend.
 void DockFrontend.removeFrontendListener(DockFrontendListener listener)
          Removes an earlier added listener from this frontend.
 

Uses of DockFrontendListener in bibliothek.gui.dock.event
 

Classes in bibliothek.gui.dock.event that implement DockFrontendListener
 class DockFrontendAdapter
          An class implementing all methods of DockFrontendListener, but not doing anything inside these methodes.