2581258225832584258525862587
public void setSeriesRenderingOrder(final SeriesRenderingOrder order) { if (order == null) { throw new IllegalArgumentException("Null 'order' argument."); } this.seriesRenderingOrder = order; this.notifyListeners(new PlotChangeEvent(this)); }
326327328329330331332
public void addAnnotation(final CategoryAnnotation annotation) { if (annotation == null) { throw new IllegalArgumentException("Null 'annotation' argument."); } this.annotations.add(annotation); this.notifyListeners(new PlotChangeEvent(this)); }
398399400401402403404
this.backgroundDomainMarkers.put(new Integer(index), markers); } markers.add(marker); } marker.addChangeListener(this); this.notifyListeners(new PlotChangeEvent(this)); }
435436437438439440441
this.backgroundRangeMarkers.put(new Integer(index), markers); } markers.add(marker); } marker.addChangeListener(this); this.notifyListeners(new PlotChangeEvent(this)); }
606607608609610611612
* Clears all the annotations and sends a {@link PlotChangeEvent} to all * registered listeners. */ public void clearAnnotations() { this.annotations.clear(); this.notifyListeners(new PlotChangeEvent(this)); }
621622623624625626627
if (axis != null) { axis.removeChangeListener(this); } } this.domainAxes.clear(); this.notifyListeners(new PlotChangeEvent(this)); }
647648649650651652653
final Integer key = (Integer) iterator.next(); this.clearDomainMarkers(key.intValue()); } this.foregroundDomainMarkers.clear(); } this.notifyListeners(new PlotChangeEvent(this)); }
682683684685686687688
m.removeChangeListener(this); } markers.clear(); } } this.notifyListeners(new PlotChangeEvent(this)); }
697698699700701702703
if (axis != null) { axis.removeChangeListener(this); } } this.rangeAxes.clear(); this.notifyListeners(new PlotChangeEvent(this)); }
723724725726727728729
final Integer key = (Integer) iterator.next(); this.clearRangeMarkers(key.intValue()); } this.foregroundRangeMarkers.clear(); } this.notifyListeners(new PlotChangeEvent(this)); }