public interface DockTitleBindingListener
DockController
, receives notifications when
a DockTitle
is bound or unbound.Modifier and Type | Method and Description |
---|---|
void |
titleBound(DockController controller,
DockTitle title,
Dockable dockable)
|
void |
titleUnbound(DockController controller,
DockTitle title,
Dockable dockable)
|
void titleBound(DockController controller, DockTitle title, Dockable dockable)
title
was bound
to dockable
.
This method is called after the DockTitle.bind()
-method
was invoked.controller
- the origin of the eventtitle
- the DockTitle
that was bounddockable
- the owner of title
void titleUnbound(DockController controller, DockTitle title, Dockable dockable)
title
was unbound
from dockable
.
This method is called after the DockTitle.bind()
-method
was invoked.controller
- the origin of the eventtitle
- the DockTitle
which was unbounddockable
- the old owner of title