-
- All Known Implementing Classes:
BasicStroke
public interface Stroke
TheStroke
interface allows aGraphics2D
object to obtain aShape
that is the decorated outline, or stylistic representation of the outline, of the specifiedShape
. Stroking aShape
is like tracing its outline with a marking pen of the appropriate size and shape. The area where the pen would place ink is the area enclosed by the outlineShape
.The methods of the
Graphics2D
interface that use the outlineShape
returned by aStroke
object includedraw
and any other methods that are implemented in terms of that method, such asdrawLine
,drawRect
,drawRoundRect
,drawOval
,drawArc
,drawPolyline
, anddrawPolygon
.The objects of the classes implementing
Stroke
must be read-only becauseGraphics2D
does not clone these objects either when they are set as an attribute with thesetStroke
method or when theGraphics2D
object is itself cloned. If aStroke
object is modified after it is set in theGraphics2D
context then the behavior of subsequent rendering would be undefined.- See Also:
BasicStroke
,Graphics2D.setStroke(java.awt.Stroke)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Shape
createStrokedShape(Shape p)
Returns an outlineShape
which encloses the area that should be painted when theShape
is stroked according to the rules defined by the object implementing theStroke
interface.
-
-
-
Method Detail
-
createStrokedShape
Shape createStrokedShape(Shape p)
Returns an outlineShape
which encloses the area that should be painted when theShape
is stroked according to the rules defined by the object implementing theStroke
interface.- Parameters:
p
- aShape
to be stroked- Returns:
- the stroked outline
Shape
.
-
-