Advanced   Java   Services JApplet, JDialog, JFrame, JWindow, JInternalFrame Back Next Up Home


Gemeinsame Methoden aller fünf Klassen

Alle fünf Klassen erben letztlich von Component und haben daher viele Methoden gemeinsam. Darüber hinaus gibt es noch eine Reihe weiterer gemeinsamer Methoden, da alle fünf Klassen das Interface RootPaneContainer implementieren.

RootPaneContainer Methoden
ReturntypName der Methode
ContainergetContentPane()
Returns the contentPane.
voidsetContentPane(Container contentPane)
The "contentPane" is the primary container for application specific components.
Component
 
getGlassPane()
Returns the glassPane.
voidsetGlassPane(Component glassPane)
The glassPane is always the first child of the rootPane and the rootPanes layout manager ensures that it's always as big as the rootPane.
JLayeredPane
 
getLayeredPane()
Returns the layeredPane.
voidsetLayeredPane(JLayeredPane layeredPane)
A Container that manages the contentPane and in some cases a menu bar.
JRootPane
 
getRootPane()
Return this component's single JRootPane child.

JWindow

JWindow besitzt keine zusätzlichen Methoden. Wie ein Window ist ein JWindow eine nicht verschiebbare Fläche ohne Titelbalken und ohne Rand. Diese Funktionalität muß man selbst programmieren.


JApplet, JDialog, JFrame, JInternalFrame
RootPaneContainer Methoden
ReturntypName der MethodeJAppletJDialogJFrameJInternalFrame
JMenuBargetJMenuBar()xxxx
voidsetJMenuBar(JMenuBar mb)xxxx
intgetDefaultCloseOperation() xxx
voidsetDefaultCloseOperation(int operation) xxx

Valid XHTML 1.0 Strict top Back Next Up Home