All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class taxman.BorderPanel

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----taxman.BorderPanel

public class BorderPanel
extends Panel
This class is very simple. Its only job is to paint a border around another panel.


Constructor Index

 o BorderPanel(Component, int, int, int, int, Color)
Constructor takes a component (to place the border around) and the size of the border on each size and, finally, the color of the border.

Constructors

 o BorderPanel
 public BorderPanel(Component c,
                    int top,
                    int left,
                    int bottom,
                    int right,
                    Color color)
Constructor takes a component (to place the border around) and the size of the border on each size and, finally, the color of the border.

Parameters:
c - The component around which to lay the border
top - Size of border on the top
left - Size of border on the left
bottom - Size of border on the bottom
right - Size of border on the right
color - Color of border

All Packages  Class Hierarchy  This Package  Previous  Next  Index