javax.swing.border
Class SoftBevelBorder
java.lang.Object
|
+--javax.swing.border.AbstractBorder
|
+--javax.swing.border.BevelBorder
|
+--javax.swing.border.SoftBevelBorder
- public class SoftBevelBorder
- extends BevelBorder
A class which implements a raised or lowered bevel with
softened corners.
Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is appropriate
for short term storage or RMI between applications running the same
version of Swing. A future release of Swing will provide support for
long term persistence.
- See Also:
- Serialized Form
Constructor Summary |
SoftBevelBorder(int bevelType)
Creates a bevel border with the specified type and whose
colors will be derived from the background color of the
component passed into the paintBorder method. |
SoftBevelBorder(int bevelType,
Color highlight,
Color shadow)
Creates a bevel border with the specified type, highlight and
shadow colors. |
SoftBevelBorder(int bevelType,
Color highlightOuter,
Color highlightInner,
Color shadowOuter,
Color shadowInner)
Creates a bevel border with the specified type, highlight
shadow colors. |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
SoftBevelBorder
public SoftBevelBorder(int bevelType)
- Creates a bevel border with the specified type and whose
colors will be derived from the background color of the
component passed into the paintBorder method.
- Parameters:
bevelType
- the type of bevel for the border
SoftBevelBorder
public SoftBevelBorder(int bevelType,
Color highlight,
Color shadow)
- Creates a bevel border with the specified type, highlight and
shadow colors.
- Parameters:
bevelType
- the type of bevel for the borderhighlight
- the color to use for the bevel highlightshadow
- the color to use for the bevel shadow
SoftBevelBorder
public SoftBevelBorder(int bevelType,
Color highlightOuter,
Color highlightInner,
Color shadowOuter,
Color shadowInner)
- Creates a bevel border with the specified type, highlight
shadow colors.
- Parameters:
bevelType
- the type of bevel for the borderhighlightOuter
- the color to use for the bevel outer highlighthighlightInner
- the color to use for the bevel inner highlightshadowOuter
- the color to use for the bevel outer shadowshadowInner
- the color to use for the bevel inner shadow
paintBorder
public void paintBorder(Component c,
Graphics g,
int x,
int y,
int width,
int height)
- Paints the border for the specified component with the specified
position and size.
- Parameters:
c
- the component for which this border is being paintedg
- the paint graphicsx
- the x position of the painted bordery
- the y position of the painted borderwidth
- the width of the painted borderheight
- the height of the painted border- Overrides:
- paintBorder in class BevelBorder
getBorderInsets
public Insets getBorderInsets(Component c)
- Returns the insets of the border.
- Parameters:
c
- the component for which this border insets value applies- Overrides:
- getBorderInsets in class BevelBorder
isBorderOpaque
public boolean isBorderOpaque()
- Returns whether or not the border is opaque.
- Overrides:
- isBorderOpaque in class BevelBorder
Submit a bug or feature Version 1.2 of Java Platform API Specification
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.