Package org.jfree.chart.plot
Class DefaultDrawingSupplier
java.lang.Object
org.jfree.chart.plot.DefaultDrawingSupplier
- All Implemented Interfaces:
Serializable
,Cloneable
,DrawingSupplier
,org.jfree.util.PublicCloneable
- Direct Known Subclasses:
MyDefaultShapeDrawingSupplier
public class DefaultDrawingSupplier extends Object implements DrawingSupplier, Cloneable, org.jfree.util.PublicCloneable, Serializable
A default implementation of the
DrawingSupplier
interface.- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description static Paint[]
DEFAULT_OUTLINE_PAINT_SEQUENCE
The default outline paint sequence.static Stroke[]
DEFAULT_OUTLINE_STROKE_SEQUENCE
The default outline stroke sequence.static Paint[]
DEFAULT_PAINT_SEQUENCE
The default fill paint sequence.static Shape[]
DEFAULT_SHAPE_SEQUENCE
The default shape sequence.static Stroke[]
DEFAULT_STROKE_SEQUENCE
The default stroke sequence. -
Constructor Summary
Constructors Constructor Description DefaultDrawingSupplier()
Creates a new supplier, with default sequences for fill paint, outline paint, stroke and shapes.DefaultDrawingSupplier(Paint[] paintSequence, Paint[] outlinePaintSequence, Stroke[] strokeSequence, Stroke[] outlineStrokeSequence, Shape[] shapeSequence)
Creates a new supplier. -
Method Summary
Modifier and Type Method Description Object
clone()
Returns a clone.static Shape[]
createStandardSeriesShapes(float shapeSize)
Creates an array of standard shapes to display for the items in series on charts.boolean
equals(Object obj)
Tests this object for equality with another object.Paint
getNextOutlinePaint()
Returns the next outline paint in the sequence.Stroke
getNextOutlineStroke()
Returns the next outline stroke in the sequence.Paint
getNextPaint()
Returns the next paint in the sequence.Shape
getNextShape()
Returns the next shape in the sequence.Stroke
getNextStroke()
Returns the next stroke in the sequence.
-
Field Details
-
DEFAULT_PAINT_SEQUENCE
The default fill paint sequence. -
DEFAULT_OUTLINE_PAINT_SEQUENCE
The default outline paint sequence. -
DEFAULT_STROKE_SEQUENCE
The default stroke sequence. -
DEFAULT_OUTLINE_STROKE_SEQUENCE
The default outline stroke sequence. -
DEFAULT_SHAPE_SEQUENCE
The default shape sequence.
-
-
Constructor Details
-
DefaultDrawingSupplier
public DefaultDrawingSupplier()Creates a new supplier, with default sequences for fill paint, outline paint, stroke and shapes. -
DefaultDrawingSupplier
public DefaultDrawingSupplier(Paint[] paintSequence, Paint[] outlinePaintSequence, Stroke[] strokeSequence, Stroke[] outlineStrokeSequence, Shape[] shapeSequence)Creates a new supplier.- Parameters:
paintSequence
- the fill paint sequence.outlinePaintSequence
- the outline paint sequence.strokeSequence
- the stroke sequence.outlineStrokeSequence
- the outline stroke sequence.shapeSequence
- the shape sequence.
-
-
Method Details
-
getNextPaint
Returns the next paint in the sequence.- Specified by:
getNextPaint
in interfaceDrawingSupplier
- Returns:
- The paint.
-
getNextOutlinePaint
Returns the next outline paint in the sequence.- Specified by:
getNextOutlinePaint
in interfaceDrawingSupplier
- Returns:
- The paint.
-
getNextStroke
Returns the next stroke in the sequence.- Specified by:
getNextStroke
in interfaceDrawingSupplier
- Returns:
- The stroke.
-
getNextOutlineStroke
Returns the next outline stroke in the sequence.- Specified by:
getNextOutlineStroke
in interfaceDrawingSupplier
- Returns:
- The stroke.
-
getNextShape
Returns the next shape in the sequence.- Specified by:
getNextShape
in interfaceDrawingSupplier
- Returns:
- The shape.
-
createStandardSeriesShapes
Creates an array of standard shapes to display for the items in series on charts.- Returns:
- The array of shapes.
-
equals
Tests this object for equality with another object. -
clone
Returns a clone.- Specified by:
clone
in interfaceorg.jfree.util.PublicCloneable
- Returns:
- A clone.
- Throws:
CloneNotSupportedException
- if a component of the supplier does not support cloning.
-