Serializable
, Border
public class StrokeBorder extends AbstractBorder
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. As of 1.4, support for long term storage of all JavaBeans has been added to the java.beans
package. Please see XMLEncoder
.
Constructor | Description |
---|---|
StrokeBorder |
Creates a border of the specified stroke . |
StrokeBorder |
Creates a border of the specified stroke and paint . |
Modifier and Type | Method | Description |
---|---|---|
Insets |
getBorderInsets |
Reinitializes the insets parameter with this border's current insets. |
Paint |
getPaint() |
Returns the Paint object used to generate a color during the border rendering. |
BasicStroke |
getStroke() |
Returns the BasicStroke object used to stroke a shape during the border rendering. |
void |
paintBorder |
Paints the border for the specified component with the specified position and size. |
getBaseline, getBaselineResizeBehavior, getBorderInsets, getInteriorRectangle, getInteriorRectangle, isBorderOpaque
public StrokeBorder(BasicStroke stroke)
stroke
. The component's foreground color will be used to render the border.stroke
- the BasicStroke
object used to stroke a shapeNullPointerException
- if the specified stroke
is null
@ConstructorProperties({"stroke","paint"}) public StrokeBorder(BasicStroke stroke, Paint paint)
stroke
and paint
. If the specified paint
is null
, the component's foreground color will be used to render the border.stroke
- the BasicStroke
object used to stroke a shapepaint
- the Paint
object used to generate a colorNullPointerException
- if the specified stroke
is null
public void paintBorder(Component c, Graphics g, int x, int y, int width, int height)
Paint
object, the component's foreground color will be used to render the border. If the component's foreground color is not available, the default color of the Graphics
object will be used.paintBorder
in interface Border
paintBorder
in class AbstractBorder
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 borderNullPointerException
- if the specified g
is null
public Insets getBorderInsets(Component c, Insets insets)
insets
parameter with this border's current insets. Every inset is the smallest (closest to negative infinity) integer value that is greater than or equal to the line width of the stroke that is used to paint the border.getBorderInsets
in class AbstractBorder
c
- the component for which this border insets value appliesinsets
- the Insets
object to be reinitializedinsets
parameterNullPointerException
- if the specified insets
is null
public BasicStroke getStroke()
BasicStroke
object used to stroke a shape during the border rendering.BasicStroke
objectpublic Paint getPaint()
Paint
object used to generate a color during the border rendering.Paint
object or null
if the paint
parameter is not set
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/swing/border/StrokeBorder.html