368369370371372373374
public void setItemPaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null 'paint' argument."); } this.itemPaint = paint; notifyListeners(new TitleChangeEvent(this)); }
390391392393394395396
public void setItemLabelPadding(RectangleInsets padding) { if (padding == null) { throw new IllegalArgumentException("Null 'padding' argument."); } this.itemLabelPadding = padding; notifyListeners(new TitleChangeEvent(this)); }
169170171172173174175
public void setScale(PaintScale scale) { if (scale == null) { throw new IllegalArgumentException("Null 'scale' argument."); } this.scale = scale; notifyListeners(new TitleChangeEvent(this)); }
198199200201202203204
throw new IllegalArgumentException("Null 'axis' argument."); } this.axis.removeChangeListener(this); this.axis = axis; this.axis.addChangeListener(this); notifyListeners(new TitleChangeEvent(this)); }
225226227228229230231
public void setAxisLocation(AxisLocation location) { if (location == null) { throw new IllegalArgumentException("Null 'location' argument."); } this.axisLocation = location; notifyListeners(new TitleChangeEvent(this)); }
247248249250251252253
* * @param offset the offset. */ public void setAxisOffset(double offset) { this.axisOffset = offset; notifyListeners(new TitleChangeEvent(this)); }
271272273274275276277
* * @see #getStripWidth() */ public void setStripWidth(double width) { this.stripWidth = width; notifyListeners(new TitleChangeEvent(this)); }
297298299300301302303
* * @see #isStripOutlineVisible() */ public void setStripOutlineVisible(boolean visible) { this.stripOutlineVisible = visible; notifyListeners(new TitleChangeEvent(this)); }
324325326327328329330
public void setStripOutlinePaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null 'paint' argument."); } this.stripOutlinePaint = paint; notifyListeners(new TitleChangeEvent(this)); }
351352353354355356357
public void setStripOutlineStroke(Stroke stroke) { if (stroke == null) { throw new IllegalArgumentException("Null 'stroke' argument."); } this.stripOutlineStroke = stroke; notifyListeners(new TitleChangeEvent(this)); }