Beispiel #1
0
 /**
  * Sets the insets for the axis label, and sends an {@link AxisChangeEvent} to all registered
  * listeners.
  *
  * @param insets the insets (<code>null</code> not permitted).
  * @param notify notify listeners?
  * @since 1.0.10
  */
 public void setLabelInsets(RectangleInsets insets, boolean notify) {
   ParamChecks.nullNotPermitted(insets, "insets");
   if (!insets.equals(this.labelInsets)) {
     this.labelInsets = insets;
     if (notify) {
       fireChangeEvent();
     }
   }
 }