Package bibliothek.gui.dock.common
Interface CStationContainerListener
public interface CStationContainerListener
This listener is added to a
CStationContainer and receives an event if
either CStations are added or removed from the container.- Author:
- Benjamin Sigg
-
Method Summary
Modifier and TypeMethodDescriptionvoidadded(CStationContainer source, CStation<?> station) Called afterstationhas been added tosource.voidremoved(CStationContainer source, CStation<?> station) Called afterstationhas been removed fromsource.
-
Method Details
-
added
Called afterstationhas been added tosource.- Parameters:
source- the source of the eventstation- the newly added station
-
removed
Called afterstationhas been removed fromsource.- Parameters:
source- the source of the eventstation- the station that was removed
-