Package org.jfree.chart.block
Class LineBorder
java.lang.Object
org.jfree.chart.block.LineBorder
- All Implemented Interfaces:
Serializable,BlockFrame
public class LineBorder extends Object implements BlockFrame, Serializable
A line border for any
AbstractBlock.- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description LineBorder()Creates a default border.LineBorder(Paint paint, Stroke stroke, RectangleInsets insets)Creates a new border with the specified color. -
Method Summary
Modifier and Type Method Description voiddraw(Graphics2D g2, Rectangle2D area)Draws the border by filling in the reserved space (in black).booleanequals(Object obj)Tests this border for equality with an arbitrary instance.RectangleInsetsgetInsets()Returns the insets.PaintgetPaint()Returns the paint.StrokegetStroke()Returns the stroke.
-
Constructor Details
-
LineBorder
public LineBorder()Creates a default border. -
LineBorder
Creates a new border with the specified color.- Parameters:
paint- the color (nullnot permitted).stroke- the border stroke (nullnot permitted).insets- the insets (nullnot permitted).
-
-
Method Details
-
getPaint
Returns the paint.- Returns:
- The paint (never
null).
-
getInsets
Returns the insets.- Specified by:
getInsetsin interfaceBlockFrame- Returns:
- The insets (never
null).
-
getStroke
Returns the stroke.- Returns:
- The stroke (never
null).
-
draw
Draws the border by filling in the reserved space (in black).- Specified by:
drawin interfaceBlockFrame- Parameters:
g2- the graphics device.area- the area.
-
equals
Tests this border for equality with an arbitrary instance.
-