757758759760761762763764
* @param notify notify listeners? */ public void setStroke(Stroke stroke, boolean notify) { this.stroke = stroke; if (notify) { notifyListeners(new RendererChangeEvent(this)); } }
783784785786787788789790
* @param notify notify listeners? */ public void setSeriesStroke(int series, Stroke stroke, boolean notify) { this.strokeList.setStroke(series, stroke); if (notify) { notifyListeners(new RendererChangeEvent(this)); } }
819820821822823824825826
if (stroke == null) { throw new IllegalArgumentException("Null 'stroke' argument."); } this.baseStroke = stroke; if (notify) { notifyListeners(new RendererChangeEvent(this)); } }
890891892893894895896897
* @param notify notify listeners? */ public void setOutlineStroke(Stroke stroke, boolean notify) { this.outlineStroke = stroke; if (notify) { notifyListeners(new RendererChangeEvent(this)); } }
916917918919920921922923
* @param notify notify listeners? */ public void setSeriesOutlineStroke(int series, Stroke stroke, boolean notify) { this.outlineStrokeList.setStroke(series, stroke); if (notify) { notifyListeners(new RendererChangeEvent(this)); } }
949950951952953954955956
* @param notify a flag that controls whether or not listeners are notified. */ public void setBaseOutlineStroke(Stroke stroke, boolean notify) { this.baseOutlineStroke = stroke; if (notify) { notifyListeners(new RendererChangeEvent(this)); } }
10201021102210231024102510261027
* @param notify notify listeners? */ public void setShape(Shape shape, boolean notify) { this.shape = shape; if (notify) { notifyListeners(new RendererChangeEvent(this)); } }
10461047104810491050105110521053
* @param notify notify listeners? */ public void setSeriesShape(int series, Shape shape, boolean notify) { this.shapeList.setShape(series, shape); if (notify) { notifyListeners(new RendererChangeEvent(this)); } }
10831084108510861087108810891090
if (shape == null) { throw new IllegalArgumentException("Null 'shape' argument."); } this.baseShape = shape; if (notify) { notifyListeners(new RendererChangeEvent(this)); } }
121122123124125126127
* * @param draw the flag. */ public void setDrawOpenTicks(boolean draw) { this.drawOpenTicks = draw; notifyListeners(new RendererChangeEvent(this)); }