public interface StackDnDAutoSelectSupport
StackDockComponent
s to inform the client if the user drags some
data over a tab. The interface itself only offers an install(StackDockStation, StackDockComponent)
and
uninstall(StackDockComponent)
method - what exactly the subclass does with the
StackDockComponent
is not defined.Modifier and Type | Method and Description |
---|---|
void |
install(StackDockStation station,
StackDockComponent component)
Called if a
StackDockComponent has been bound to a DockController . |
void |
uninstall(StackDockComponent component)
Called if a
StackDockComponent has been removed from a DockController . |
void install(StackDockStation station, StackDockComponent component)
StackDockComponent
has been bound to a DockController
.station
- the station on which component
is showncomponent
- the component that was boundvoid uninstall(StackDockComponent component)
StackDockComponent
has been removed from a DockController
.component
- the component that was removed