There is a button-drop-down list, there are lines in it, what to prescribe so that the text is centered, not left? I found this, but I do not know how to apply

(SwingConstants.CENTER) 

    1 answer 1

    JComboBox text JComboBox can be changed as follows:

     ((JLabel)comboBox.getRenderer()).setHorizontalAlignment(JLabel.CENTER); 

    Similar question: Is there a JCombobox ?