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 and Description |
---|
StrokeBorder(BasicStroke stroke)
Creates a border of the specified
stroke . |
StrokeBorder(BasicStroke stroke,
Paint paint)
Creates a border of the specified
stroke and paint . |
Modifier and Type | Method and Description |
---|---|
Insets |
getBorderInsets(Component c,
Insets insets)
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(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.
|
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(value={"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
Math.ceil(double)
public BasicStroke getStroke()
BasicStroke
object used to stroke a shape
during the border rendering.BasicStroke
object Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2016, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.