Schnittstelle ViewerComponent
- Alle bekannten Unterschnittstellen:
CustomPromptEditor, NavigationTab, NavigationView, ReportView, ReportViewer, StatusBar
- Alle bekannten Implementierungsklassen:
SwingNavigationView, SwingReportView, SwingReportViewer, SwingStatusBar
public interface ViewerComponent
All public graphical components of the viewer must implement this interface, which
provides the actual AWT component so that it can be added to containers, etc.
For example, if you have a "ReportViewer" and would like to add it to your own JFrame, simply call:
For example, if you have a "ReportViewer" and would like to add it to your own JFrame, simply call:
myFrame.add(viewer.getComponent())- Seit:
- 7.0
-
Methodenübersicht
Modifikator und TypMethodeBeschreibungAll public graphical components of the viewer must implement this method, which returns the actual AWT component so that it can be added to containers, etc.
For example, if you have a "ReportViewer" and would like to add it to your own JFrame, simply call:myFrame.add(viewer.getComponent())
-
Methodendetails
-
getComponent
Component getComponent()All public graphical components of the viewer must implement this method, which returns the actual AWT component so that it can be added to containers, etc.
For example, if you have a "ReportViewer" and would like to add it to your own JFrame, simply call:myFrame.add(viewer.getComponent())- Gibt zurück:
- Actual AWT component of this object.
- Seit:
- 7.0
-