All Packages Class Hierarchy This Package Previous Next Index
Class jp.kyasu.awt.BorderedPanel
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----jp.kyasu.awt.KContainer
|
+----jp.kyasu.awt.BorderedPanel
- public class BorderedPanel
- extends KContainer
The BorderedPanel
is the bordered lightweight container class.
The default layout manager for a bordered panel is BorderLayout
.
- Version:
- 10 Aug 1997
- Author:
- Kazuki YASUMATSU
- See Also:
- VBorder
-
BorderedPanel()
- Creates a new panel using the default layout manager and border.
-
BorderedPanel(LayoutManager)
- Creates a new panel with the specified layout manager.
-
BorderedPanel(LayoutManager, VBorder)
- Creates a new panel with the specified layout manager and border.
-
BorderedPanel(VBorder)
- Creates a new panel with the specified border.
-
getBorder()
- Returns the visual border of this panel.
-
getInsets()
- Returns the insets of this panel.
-
paint(Graphics)
- Paints this panel.
BorderedPanel
public BorderedPanel()
- Creates a new panel using the default layout manager and border.
BorderedPanel
public BorderedPanel(VBorder border)
- Creates a new panel with the specified border.
- Parameters:
- border - the visual border of the panel.
BorderedPanel
public BorderedPanel(LayoutManager layout)
- Creates a new panel with the specified layout manager.
- Parameters:
- layout - the layout manager for the panel.
BorderedPanel
public BorderedPanel(LayoutManager layout,
VBorder border)
- Creates a new panel with the specified layout manager and border.
- Parameters:
- layout - the layout manager for the panel.
- border - the visual border of the panel.
getInsets
public Insets getInsets()
- Returns the insets of this panel.
- Overrides:
- getInsets in class KContainer
getBorder
public VBorder getBorder()
- Returns the visual border of this panel.
paint
public void paint(Graphics g)
- Paints this panel.
- Overrides:
- paint in class Container
All Packages Class Hierarchy This Package Previous Next Index