Package org.jfree.chart.event

Examples of org.jfree.chart.event.TitleChangeEvent


      if (edge == null)
      {
         throw new IllegalArgumentException("Null 'edge' argument.");
      }
      this.legendItemGraphicEdge = edge;
      notifyListeners(new TitleChangeEvent(this));
   }
View Full Code Here


      if (padding == null)
      {
         throw new IllegalArgumentException("Null 'padding' argument.");
      }
      this.legendItemGraphicPadding = padding;
      notifyListeners(new TitleChangeEvent(this));
   }
View Full Code Here

      if (font == null)
      {
         throw new IllegalArgumentException("Null 'font' argument.");
      }
      this.itemFont = font;
      notifyListeners(new TitleChangeEvent(this));
   }
View Full Code Here

      if (paint == null)
      {
         throw new IllegalArgumentException("Null 'paint' argument.");
      }
      this.itemPaint = paint;
      notifyListeners(new TitleChangeEvent(this));
   }
View Full Code Here

      if (padding == null)
      {
         throw new IllegalArgumentException("Null 'padding' argument.");
      }
      this.itemLabelPadding = padding;
      notifyListeners(new TitleChangeEvent(this));
   }
View Full Code Here

    public void setSources(LegendItemSource[] sources) {
        if (sources == null) {
            throw new IllegalArgumentException("Null 'sources' argument.");
        }
        this.sources = sources;
        notifyListeners(new TitleChangeEvent(this));
    }
View Full Code Here

     *
     * @param paint  the paint (<code>null</code> permitted).
     */
    public void setBackgroundPaint(Paint paint) {
        this.backgroundPaint = paint;
        notifyListeners(new TitleChangeEvent(this));
    }
View Full Code Here

    public void setLegendItemGraphicEdge(RectangleEdge edge) {
        if (edge == null) {
            throw new IllegalArgumentException("Null 'edge' argument.");
        }
        this.legendItemGraphicEdge = edge;
        notifyListeners(new TitleChangeEvent(this));
    }
View Full Code Here

    public void setLegendItemGraphicPadding(RectangleInsets padding) {
        if (padding == null) {
            throw new IllegalArgumentException("Null 'padding' argument.");
        }
        this.legendItemGraphicPadding = padding;
        notifyListeners(new TitleChangeEvent(this));
    }
View Full Code Here

    public void setItemFont(Font font) {
        if (font == null) {
            throw new IllegalArgumentException("Null 'font' argument.");
        }
        this.itemFont = font;
        notifyListeners(new TitleChangeEvent(this));
    }
View Full Code Here

TOP

Related Classes of org.jfree.chart.event.TitleChangeEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.