Interface DualListingFieldPanelCoordinator
-
- All Superinterfaces:
ViewListener
- All Known Implementing Classes:
ListingComparisonFieldPanelCoordinator
public interface DualListingFieldPanelCoordinator extends ViewListener
Coordinates the locations between the left and right sides of a dual listing panel.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
leftLocationChanged(ProgramLocation leftLocation)
Method that gets called when the location changes in the left side's program listing.void
rightLocationChanged(ProgramLocation rightLocation)
Method that gets called when the location changes in the right side's program listing.-
Methods inherited from interface docking.widgets.fieldpanel.listener.ViewListener
viewChanged
-
-
-
-
Method Detail
-
leftLocationChanged
void leftLocationChanged(ProgramLocation leftLocation)
Method that gets called when the location changes in the left side's program listing.- Parameters:
leftLocation
- the new location in the left side.
-
rightLocationChanged
void rightLocationChanged(ProgramLocation rightLocation)
Method that gets called when the location changes in the right side's program listing.- Parameters:
rightLocation
- the new location in the right side.
-
-