Package org.jfree.chart.block
Class LineBorder
java.lang.Object
org.jfree.chart.block.LineBorder
- All Implemented Interfaces:
Serializable
,BlockFrame
A line border for any
AbstractBlock
.- Since:
- 1.0.5
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a default border.LineBorder
(Paint paint, Stroke stroke, org.jfree.ui.RectangleInsets insets) Creates a new border with the specified color. -
Method Summary
Modifier and TypeMethodDescriptionvoid
draw
(Graphics2D g2, Rectangle2D area) Draws the border by filling in the reserved space (in black).boolean
Tests this border for equality with an arbitrary instance.org.jfree.ui.RectangleInsets
Returns the insets.getPaint()
Returns the paint.Returns the stroke.private void
readObject
(ObjectInputStream stream) Provides serialization support.private void
writeObject
(ObjectOutputStream stream) Provides serialization support.
-
Field Details
-
serialVersionUID
static final long serialVersionUIDFor serialization.- See Also:
-
paint
The line color. -
stroke
The line stroke. -
insets
private org.jfree.ui.RectangleInsets insetsThe insets.
-
-
Constructor Details
-
LineBorder
public LineBorder()Creates a default border. -
LineBorder
Creates a new border with the specified color.- Parameters:
paint
- the color (null
not permitted).stroke
- the border stroke (null
not permitted).insets
- the insets (null
not permitted).
-
-
Method Details
-
getPaint
Returns the paint.- Returns:
- The paint (never
null
).
-
getInsets
public org.jfree.ui.RectangleInsets getInsets()Returns the insets.- Specified by:
getInsets
in 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:
draw
in interfaceBlockFrame
- Parameters:
g2
- the graphics device.area
- the area.
-
equals
Tests this border for equality with an arbitrary instance. -
writeObject
Provides serialization support.- Parameters:
stream
- the output stream.- Throws:
IOException
- if there is an I/O error.
-
readObject
Provides serialization support.- Parameters:
stream
- the input stream.- Throws:
IOException
- if there is an I/O error.ClassNotFoundException
- if there is a classpath problem.
-