364365366367368369370371
if (this.rangeAxis != null) { this.rangeAxis.removeChangeListener(this); } this.rangeAxis = axis; notifyListeners(new PlotChangeEvent(this)); }
376377378379380381382383
* @param axis The new axis (null permitted). */ public void setColorBarAxis(ColorBar axis) { this.colorBar = axis; notifyListeners(new PlotChangeEvent(this)); }
394395396397398399400401
if (this.domainMarkers == null) { this.domainMarkers = new java.util.ArrayList(); } this.domainMarkers.add(marker); notifyListeners(new PlotChangeEvent(this)); }
404405406407408409410411
* Clears all the domain markers. */ public void clearDomainMarkers() { if (this.domainMarkers != null) { this.domainMarkers.clear(); notifyListeners(new PlotChangeEvent(this)); } }
422423424425426427428429
if (this.rangeMarkers == null) { this.rangeMarkers = new java.util.ArrayList(); } this.rangeMarkers.add(marker); notifyListeners(new PlotChangeEvent(this)); }
432433434435436437438439
* Clears all the range markers. */ public void clearRangeMarkers() { if (this.rangeMarkers != null) { this.rangeMarkers.clear(); notifyListeners(new PlotChangeEvent(this)); } }
447448449450451452453454
if (this.annotations == null) { this.annotations = new java.util.ArrayList(); } this.annotations.add(annotation); notifyListeners(new PlotChangeEvent(this)); }
457458459460461462463464
* Clears all the annotations. */ public void clearAnnotations() { if (this.annotations != null) { this.annotations.clear(); notifyListeners(new PlotChangeEvent(this)); } }
1183118411851186118711881189
* One source of property change events is the plot's renderer. * * @param event Information about the property change. */ public void propertyChange(PropertyChangeEvent event) { notifyListeners(new PlotChangeEvent(this)); }
12081209121012111212121312141215
if (this.colorBar != null) { this.colorBar.configure(this); } PlotChangeEvent e = new PlotChangeEvent(this); notifyListeners(e); }