297298299300301302303
*/ public void setLast(RegularTimePeriod last) { ParamChecks.nullNotPermitted(last, "last"); this.last = last; this.last.peg(this.calendar); notifyListeners(new AxisChangeEvent(this)); }
322323324325326327328
ParamChecks.nullNotPermitted(zone, "zone"); this.timeZone = zone; this.calendar = Calendar.getInstance(zone, this.locale); this.first.peg(this.calendar); this.last.peg(this.calendar); notifyListeners(new AxisChangeEvent(this)); }
356357358359360361362
* @param c the class (<code>null</code> not permitted). */ public void setAutoRangeTimePeriodClass(Class c) { ParamChecks.nullNotPermitted(c, "c"); this.autoRangeTimePeriodClass = c; notifyListeners(new AxisChangeEvent(this)); }
378379380381382383384
* expected). */ public void setMajorTickTimePeriodClass(Class c) { ParamChecks.nullNotPermitted(c, "c"); this.majorTickTimePeriodClass = c; notifyListeners(new AxisChangeEvent(this)); }
400401402403404405406
* * @param visible the flag. */ public void setMinorTickMarksVisible(boolean visible) { this.minorTickMarksVisible = visible; notifyListeners(new AxisChangeEvent(this)); }
422423424425426427428
* expected). */ public void setMinorTickTimePeriodClass(Class c) { ParamChecks.nullNotPermitted(c, "c"); this.minorTickTimePeriodClass = c; notifyListeners(new AxisChangeEvent(this)); }
445446447448449450451
* @param stroke the stroke (<code>null</code> not permitted). */ public void setMinorTickMarkStroke(Stroke stroke) { ParamChecks.nullNotPermitted(stroke, "stroke"); this.minorTickMarkStroke = stroke; notifyListeners(new AxisChangeEvent(this)); }
468469470471472473474
* @param paint the paint (<code>null</code> not permitted). */ public void setMinorTickMarkPaint(Paint paint) { ParamChecks.nullNotPermitted(paint, "paint"); this.minorTickMarkPaint = paint; notifyListeners(new AxisChangeEvent(this)); }
488489490491492493494
* * @param length the length. */ public void setMinorTickMarkInsideLength(float length) { this.minorTickMarkInsideLength = length; notifyListeners(new AxisChangeEvent(this)); }
508509510511512513514
* * @param length the length. */ public void setMinorTickMarkOutsideLength(float length) { this.minorTickMarkOutsideLength = length; notifyListeners(new AxisChangeEvent(this)); }