}
@Override
protected ImageComponentInfo buildArrow() {
if (isWithArrow()) {
ImageComponentInfo northarrow = super.buildArrow();
northarrow.setImagePath("/images/northarrow.gif");
northarrow.getLayoutConstraint().setAlignmentX(LayoutConstraintInfo.RIGHT);
northarrow.getLayoutConstraint().setAlignmentY(LayoutConstraintInfo.TOP);
northarrow.getLayoutConstraint().setMarginX((float) PrintingLayout.templateMarginX);
northarrow.getLayoutConstraint().setMarginY((float) PrintingLayout.templateMarginY);
northarrow.getLayoutConstraint().setWidth((float) PrintingLayout.templateNorthArrowWidth);
northarrow.setTag("arrow");
return northarrow;
} else {
return null;
}
}