Package com.inet.viewer
Interface ReportViewChangeListener
-
- All Known Subinterfaces:
ToolBar
- All Known Implementing Classes:
SwingToolBar
public interface ReportViewChangeListenerThe listener interface for receiving the information that the current ReportView has been changed. All classes that are interested in receiving this information implements this interface and with a component at the ReportViewer, using theaddReportChangeListenermethod. When the ReportView changes the object'sreportViewChangedmethod is invoked.- Since:
- 7.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreportViewChanged(ReportView rv)Invoked when the current ReportView changes.
-
-
-
Method Detail
-
reportViewChanged
void reportViewChanged(ReportView rv)
Invoked when the current ReportView changes. ReportView can be null if no ReportView is available.- Parameters:
rv- ReportView which is now the current report view. Can be null if no ReportView is currently selected- Since:
- 7.0
-
-