home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-04-21 | 800 b | 43 lines |
- package com.symantec.itools.swing.borders;
-
- import java.awt.Color;
-
- public class LineBorder
- extends com.sun.java.swing.border.LineBorder
- implements java.io.Serializable
- {
- public LineBorder()
- {
- super(Color.black);
- }
-
- //
- // Properties
- //
-
- public void setThickness(int newThickness)
- {
- thickness = newThickness;
- }
-
- public Color getLineColor()
- {
- return lineColor;
- }
-
- public void setLineColor(Color newLineColor)
- {
- lineColor = newLineColor;
- }
-
- public boolean getRoundedCorners()
- {
- return roundedCorners;
- }
-
- public void setRoundedCorners(boolean newRoundedCorners)
- {
- roundedCorners = newRoundedCorners;
- }
- }
-