createConnectionLabel(from, to));
return col;
}
private UiProvider createConnectionLabel(Operation from, IntegrationEntity to) {
BoxBuilder row = BoxBuilder.horizontal();
JLabel fromLabel = new JLabel("");
RendererUtils.decorateRenderer(fromLabel, from, Size.MEDIUM);
JLabel arrow = new JLabel(ApplicationResources.ICONS.getIcon("ArrowRight.16"));
JLabel toLabel = new JLabel("");
RendererUtils.decorateRenderer(toLabel, to, Size.MEDIUM);
setLabelStyle(fromLabel, toLabel);
return row.addAllWithSpace(10, fromLabel, arrow, toLabel);
}