Examples of JRPrintGraphicElement


Examples of net.sf.jasperreports.engine.JRPrintGraphicElement

    {
      boolean hasContour = false;
      JRLineBox box = element instanceof JRBoxContainer ? ((JRBoxContainer)element).getLineBox() : null;
      if (box == null)
      {
        JRPrintGraphicElement graphicElement = element instanceof JRPrintGraphicElement ? (JRPrintGraphicElement)element : null;
        hasContour = (graphicElement == null) || graphicElement.getLinePen().getLineWidth().floatValue() <= 0f;
      }
      else
      {
        hasContour =
          box.getTopPen().getLineWidth().floatValue() <= 0f
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.