1161116211631164116511661167
public void setFixedAutoRange(double length) { this.fixedAutoRange = length; if (isAutoRange()) { autoAdjustRange(); } notifyListeners(new AxisChangeEvent(this)); }
12661267126812691270127112721273
if (turnOffAutoRange) { this.autoRange = false; } this.range = range; if (notify) { notifyListeners(new AxisChangeEvent(this)); } }
137913801381138213831384138513861387
public void setAutoTickUnitSelection(boolean flag, boolean notify) { if (this.autoTickUnitSelection != flag) { this.autoTickUnitSelection = flag; if (notify) { notifyListeners(new AxisChangeEvent(this)); } } }
1409141014111412141314141415
* * @see #getStandardTickUnits() */ public void setStandardTickUnits(TickUnitSource source) { this.standardTickUnits = source; notifyListeners(new AxisChangeEvent(this)); }
1437143814391440144114421443
* * @since 1.0.12 */ public void setMinorTickCount(int count) { this.minorTickCount = count; notifyListeners(new AxisChangeEvent(this)); }
279280281282283284285
if (first == null) { throw new IllegalArgumentException("Null 'first' argument."); } this.first = first; this.first.peg(this.calendar); notifyListeners(new AxisChangeEvent(this)); }
303304305306307308309
if (last == null) { throw new IllegalArgumentException("Null 'last' argument."); } this.last = last; this.last.peg(this.calendar); notifyListeners(new AxisChangeEvent(this)); }
330331332333334335336
} this.timeZone = zone; this.calendar = Calendar.getInstance(zone, this.locale); this.first.peg(this.calendar); this.last.peg(this.calendar); notifyListeners(new AxisChangeEvent(this)); }
366367368369370371372
public void setAutoRangeTimePeriodClass(Class c) { if (c == null) { throw new IllegalArgumentException("Null 'c' argument."); } this.autoRangeTimePeriodClass = c; notifyListeners(new AxisChangeEvent(this)); }
390391392393394395396
public void setMajorTickTimePeriodClass(Class c) { if (c == null) { throw new IllegalArgumentException("Null 'c' argument."); } this.majorTickTimePeriodClass = c; notifyListeners(new AxisChangeEvent(this)); }