| java.lang.Object org.jfree.chart.plot.DefaultDrawingSupplier
Constructor Summary | |
public | DefaultDrawingSupplier() Creates a new supplier, with default sequences for fill paint, outline
paint, stroke and shapes. | public | DefaultDrawingSupplier(Paint[] paintSequence, Paint[] outlinePaintSequence, Stroke[] strokeSequence, Stroke[] outlineStrokeSequence, Shape[] shapeSequence) Creates a new supplier. | public | DefaultDrawingSupplier(Paint[] paintSequence, Paint[] fillPaintSequence, Paint[] outlinePaintSequence, Stroke[] strokeSequence, Stroke[] outlineStrokeSequence, Shape[] shapeSequence) Creates a new supplier. |
DEFAULT_FILL_PAINT_SEQUENCE | final public static Paint[] DEFAULT_FILL_PAINT_SEQUENCE(Code) | | The default fill paint sequence.
|
DEFAULT_OUTLINE_PAINT_SEQUENCE | final public static Paint[] DEFAULT_OUTLINE_PAINT_SEQUENCE(Code) | | The default outline paint sequence.
|
DEFAULT_OUTLINE_STROKE_SEQUENCE | final public static Stroke[] DEFAULT_OUTLINE_STROKE_SEQUENCE(Code) | | The default outline stroke sequence.
|
DEFAULT_PAINT_SEQUENCE | final public static Paint[] DEFAULT_PAINT_SEQUENCE(Code) | | The default fill paint sequence.
|
DEFAULT_SHAPE_SEQUENCE | final public static Shape[] DEFAULT_SHAPE_SEQUENCE(Code) | | The default shape sequence.
|
DEFAULT_STROKE_SEQUENCE | final public static Stroke[] DEFAULT_STROKE_SEQUENCE(Code) | | The default stroke sequence.
|
DefaultDrawingSupplier | public DefaultDrawingSupplier()(Code) | | 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)(Code) | | Creates a new supplier.
Parameters: paintSequence - the fill paint sequence. Parameters: outlinePaintSequence - the outline paint sequence. Parameters: strokeSequence - the stroke sequence. Parameters: outlineStrokeSequence - the outline stroke sequence. Parameters: shapeSequence - the shape sequence. |
DefaultDrawingSupplier | public DefaultDrawingSupplier(Paint[] paintSequence, Paint[] fillPaintSequence, Paint[] outlinePaintSequence, Stroke[] strokeSequence, Stroke[] outlineStrokeSequence, Shape[] shapeSequence)(Code) | | Creates a new supplier.
Parameters: paintSequence - the paint sequence. Parameters: fillPaintSequence - the fill paint sequence. Parameters: outlinePaintSequence - the outline paint sequence. Parameters: strokeSequence - the stroke sequence. Parameters: outlineStrokeSequence - the outline stroke sequence. Parameters: shapeSequence - the shape sequence. since: 1.0.6 |
createStandardSeriesShapes | public static Shape[] createStandardSeriesShapes()(Code) | | Creates an array of standard shapes to display for the items in series
on charts.
The array of shapes. |
equals | public boolean equals(Object obj)(Code) | | Tests this object for equality with another object.
Parameters: obj - the object (null permitted). A boolean. |
getNextFillPaint | public Paint getNextFillPaint()(Code) | | Returns the next fill paint in the sequence.
The paint. since: 1.0.6 |
getNextOutlinePaint | public Paint getNextOutlinePaint()(Code) | | Returns the next outline paint in the sequence.
The paint. |
getNextOutlineStroke | public Stroke getNextOutlineStroke()(Code) | | Returns the next outline stroke in the sequence.
The stroke. |
getNextPaint | public Paint getNextPaint()(Code) | | Returns the next paint in the sequence.
The paint. |
getNextShape | public Shape getNextShape()(Code) | | Returns the next shape in the sequence.
The shape. |
getNextStroke | public Stroke getNextStroke()(Code) | | Returns the next stroke in the sequence.
The stroke. |
|
|