bibliothek.gui.dock.common.event
Class CDockableAdapter

java.lang.Object
  extended by bibliothek.gui.dock.common.event.CDockableAdapter
All Implemented Interfaces:
CDockableListener

public class CDockableAdapter
extends Object
implements CDockableListener

A class implementing all methods of CDockableListener. The methods have an empty body and can be overriden by subclasses.

Author:
Benjamin Sigg

Constructor Summary
CDockableAdapter()
           
 
Method Summary
 void closeableChanged(CDockable dockable)
          Called when the closeable-property has changed.
 void externalizableChanged(CDockable dockable)
          Called when the externalizable-property has changed.
 void externalized(CDockable dockable)
          Called when the dockable has been externalized.
 void maximizableChanged(CDockable dockable)
          Called when the maximizable-property has changed.
 void maximized(CDockable dockable)
          Called when the dockable has been maximized.
 void minimizableChanged(CDockable dockable)
          Called when the minimizable-property has changed.
 void minimized(CDockable dockable)
          Called when the dockable has been minimized.
 void normalized(CDockable dockable)
          Called when the dockable has been normalized.
 void visibilityChanged(CDockable dockable)
          Called when the visibility-property has changed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CDockableAdapter

public CDockableAdapter()
Method Detail

closeableChanged

public void closeableChanged(CDockable dockable)
Description copied from interface: CDockableListener
Called when the closeable-property has changed.

Specified by:
closeableChanged in interface CDockableListener
Parameters:
dockable - the source of the event

externalizableChanged

public void externalizableChanged(CDockable dockable)
Description copied from interface: CDockableListener
Called when the externalizable-property has changed.

Specified by:
externalizableChanged in interface CDockableListener
Parameters:
dockable - the source of the event

externalized

public void externalized(CDockable dockable)
Description copied from interface: CDockableListener
Called when the dockable has been externalized.

Specified by:
externalized in interface CDockableListener
Parameters:
dockable - the source of the event

maximizableChanged

public void maximizableChanged(CDockable dockable)
Description copied from interface: CDockableListener
Called when the maximizable-property has changed.

Specified by:
maximizableChanged in interface CDockableListener
Parameters:
dockable - the source of the event

maximized

public void maximized(CDockable dockable)
Description copied from interface: CDockableListener
Called when the dockable has been maximized.

Specified by:
maximized in interface CDockableListener
Parameters:
dockable - the source of the event

minimizableChanged

public void minimizableChanged(CDockable dockable)
Description copied from interface: CDockableListener
Called when the minimizable-property has changed.

Specified by:
minimizableChanged in interface CDockableListener
Parameters:
dockable - the source of the event

minimized

public void minimized(CDockable dockable)
Description copied from interface: CDockableListener
Called when the dockable has been minimized.

Specified by:
minimized in interface CDockableListener
Parameters:
dockable - the source of the event

normalized

public void normalized(CDockable dockable)
Description copied from interface: CDockableListener
Called when the dockable has been normalized.

Specified by:
normalized in interface CDockableListener
Parameters:
dockable - the source of the event

visibilityChanged

public void visibilityChanged(CDockable dockable)
Description copied from interface: CDockableListener
Called when the visibility-property has changed. Please read the notes of CDockable.isVisible() to learn more about the exact meaning of visibility in the context of a CDockable.

Specified by:
visibilityChanged in interface CDockableListener
Parameters:
dockable - the source of the event