313314315316317318319320321
"Invalid 'percent' (" + percent + ") argument."); } if (this.interiorGap != percent) { this.interiorGap = percent; notifyListeners(new PlotChangeEvent(this)); } }
199200201202203204205206207
} // make the change... if (this.interiorGap != percent) { this.interiorGap = percent; notifyListeners(new PlotChangeEvent(this)); } }
257258259260261262263264265
} // make the change (if necessary)... if (this.radius != percent) { this.radius = percent; notifyListeners(new PlotChangeEvent(this)); } }
288289290291292293294295296
} // make the change... if (!this.axisLabelFont.equals(font)) { this.axisLabelFont = font; notifyListeners(new PlotChangeEvent(this)); } }
319320321322323324325326327
} // make the change... if (!this.axisLabelPaint.equals(paint)) { this.axisLabelPaint = paint; notifyListeners(new PlotChangeEvent(this)); } }
350351352353354355356357358
} // make the change... if (!this.plotLinePaint.equals(paint)) { this.plotLinePaint = paint; notifyListeners(new PlotChangeEvent(this)); } }
378379380381382383384385386
} // make the change... if (this.axisLabelGap!=percent) { this.axisLabelGap = percent; notifyListeners(new PlotChangeEvent(this)); } }
402403404405406407408409
* @param flag the new show axis labels flag. */ public void setShowAxisLabels(boolean flag) { if (this.showAxisLabels != flag) { this.showAxisLabels = flag; notifyListeners(new PlotChangeEvent(this)); } }
925926927928929930931932
*/ public void setNotify(boolean notify) { this.notify = notify; // if the flag is being set to true, there may be queued up changes... if (notify) { notifyListeners(new PlotChangeEvent(this)); } }
976977978979980981982
* Sends a {@link PlotChangeEvent} to all registered listeners. * * @since 1.0.10 */ protected void fireChangeEvent() { notifyListeners(new PlotChangeEvent(this)); }