Package org.jfree.report

Examples of org.jfree.report.Element


   *
   * @param  eList  Description of the Parameter
   */
  private void changeFontInElement(List eList) {
    for (int i = 0; i < eList.size(); i++) {
      Element e = (Element) eList.get(i);
      if (e != null && (e instanceof TextElement)) {
        TextElement tx = (TextElement) e;
        tx.getStyle().setFontDefinitionProperty(changeFontDef(tx.getStyle().getFontDefinitionProperty()));
      }
    }
View Full Code Here

TOP

Related Classes of org.jfree.report.Element

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.