/**
* @param cellContent
*/
private void applyCellBorder(JRDesignCellContents cellContent) {
if (djcross.getCellBorder() != null && !djcross.getCellBorder().equals(Border.NO_BORDER)){
JRBaseBox box = new JRBaseBox();
// box.setBorder(djcross.getCellBorder().getValue());
box.setBottomBorder(djcross.getCellBorder().getValue());
box.setRightBorder(djcross.getCellBorder().getValue());
box.setBorderColor(Color.black);
cellContent.setBox(box);
}
}