1174117511761177117811791180118111821183
{ autoAdjustRange(); } if (notify) { notifyListeners(new AxisChangeEvent(this)); } } }
1211121212131214121512161217
if (range == null) { throw new IllegalArgumentException("Null 'range' argument."); } this.defaultAutoRange = range; notifyListeners(new AxisChangeEvent(this)); }
1247124812491250125112521253
this.lowerMargin = margin; if (isAutoRange()) { autoAdjustRange(); } notifyListeners(new AxisChangeEvent(this)); }
1283128412851286128712881289
this.upperMargin = margin; if (isAutoRange()) { autoAdjustRange(); } notifyListeners(new AxisChangeEvent(this)); }
1312131313141315131613171318
this.fixedAutoRange = length; if (isAutoRange()) { autoAdjustRange(); } notifyListeners(new AxisChangeEvent(this)); }
14351436143714381439144014411442
this.autoRange = false; } this.range = range; if (notify) { notifyListeners(new AxisChangeEvent(this)); } }
156115621563156415651566156715681569
if (this.autoTickUnitSelection != flag) { this.autoTickUnitSelection = flag; if (notify) { notifyListeners(new AxisChangeEvent(this)); } } }
1593159415951596159715981599
* @see #getStandardTickUnits() */ public void setStandardTickUnits(TickUnitSource source) { this.standardTickUnits = source; notifyListeners(new AxisChangeEvent(this)); }
1623162416251626162716281629
* @since 1.0.12 */ public void setMinorTickCount(int count) { this.minorTickCount = count; notifyListeners(new AxisChangeEvent(this)); }
275276277278279280281
*/ public void setFirst(RegularTimePeriod first) { ParamChecks.nullNotPermitted(first, "first"); this.first = first; this.first.peg(this.calendar); notifyListeners(new AxisChangeEvent(this)); }