static JLabel addTextToLabelToTheRight(JLabel label, S text) { if (nempty(text)) { label.setText(text); label.setVerticalTextPosition(SwingConstants.CENTER); label.setHorizontalTextPosition(SwingConstants.RIGHT); } ret label; }