Text Alignment in JComboBox
How can I change text alignment in JComboBox to align-right?
I need it , because I'm adding strings with diferent length.
I tried to do it html in component, but it doesn't work.
I tried <html>"+"<div ALIGN=\"right\">+str+"</html>"
example:
JComboBox c = new JComboBox();
c.addItem("aa");
c.addItem("aaaaa");
c.addItem("aaaaaaaa");
please help!

