northarrow.setTag(PrintTemplate.ARROW);
return northarrow;
}
private LabelComponentImpl createTitle() {
LabelComponentImpl title = createInstance(LabelComponentImpl.class);
title.setFont(new Font("Dialog", Font.ITALIC, 14));
title.setBackgroundColor(Color.white);
title.setBorderColor(Color.BLACK);
title.setFontColor(Color.BLACK);
title.setText("<Title>");
title.getConstraint().setAlignmentY(LayoutConstraintInfo.TOP);
title.getConstraint().setAlignmentX(LayoutConstraintInfo.CENTER);
title.getConstraint().setMarginY(40);
title.setTag(PrintTemplate.TITLE);
return title;
}