&& box.getBottomPen().getLineWidth().floatValue() <= 0f;
}
if (hasContour)
{
JRBasePrintRectangle rectangle = new JRBasePrintRectangle(reportConverter.getDefaultStyleProvider());
rectangle.setX(element.getX());
rectangle.setY(element.getY());
rectangle.setWidth(element.getWidth());
rectangle.setHeight(element.getHeight());
rectangle.getLinePen().setLineWidth(0.1f);
rectangle.getLinePen().setLineStyle(LineStyleEnum.DASHED);
rectangle.getLinePen().setLineColor(ReportConverter.GRID_LINE_COLOR);
rectangle.setMode(ModeEnum.TRANSPARENT);
frame.addElement(rectangle);
}
}
}