All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jp.kyasu.graphics.VPaneBorder

java.lang.Object
   |
   +----jp.kyasu.graphics.VObject
           |
           +----jp.kyasu.graphics.VBorder
                   |
                   +----jp.kyasu.graphics.VPaneBorder

public class VPaneBorder
extends VBorder
The VPaneBorder class implements a pane border.

Version:
01 Aug 1997
Author:
Kazuki YASUMATSU

Constructor Index

 o VPaneBorder()
Constructs a pane border.
 o VPaneBorder(Insets)
Constructs a pane border with the specified insets.
 o VPaneBorder(int, int)
Constructs a pane border with the specified width and height.
 o VPaneBorder(int, int, Insets)
Constructs a pane border with the specified width and height, and the specified insets.

Method Index

 o clone()
Returns a clone of this pane border.
 o getInsets()
Returns the insets of this pane border.
 o paint(Graphics, int, int, int, int)
Paints the pane border at the specified location, with the specified dimension.
 o setInsets(Insets)
Sets the insets of this pane border to be the specified insets.

Constructors

 o VPaneBorder
 public VPaneBorder()
Constructs a pane border.

 o VPaneBorder
 public VPaneBorder(int width,
                    int height)
Constructs a pane border with the specified width and height.

Parameters:
width - the width of the pane border.
height - the height of the pane border.
 o VPaneBorder
 public VPaneBorder(Insets insets)
Constructs a pane border with the specified insets.

Parameters:
insets - the insets of the pane border.
 o VPaneBorder
 public VPaneBorder(int width,
                    int height,
                    Insets insets)
Constructs a pane border with the specified width and height, and the specified insets.

Parameters:
width - the width of the pane border.
height - the height of the pane border.
insets - the insets of the pane border.

Methods

 o getInsets
 public Insets getInsets()
Returns the insets of this pane border.

Overrides:
getInsets in class VBorder
See Also:
getInsets
 o setInsets
 public void setInsets(Insets insets)
Sets the insets of this pane border to be the specified insets.

Parameters:
insets - the insets.
 o paint
 public void paint(Graphics g,
                   int x,
                   int y,
                   int width,
                   int height)
Paints the pane border at the specified location, with the specified dimension.

Overrides:
paint in class VBorder
See Also:
paint
 o clone
 public Object clone()
Returns a clone of this pane border.

Overrides:
clone in class VObject

All Packages  Class Hierarchy  This Package  Previous  Next  Index