I would like to know how it is possible to do a JTextArea and a JTextField with rounded corners and rounded borders (I am using java swing)
Thank you very much.
Regards
Border roundedBorder = new LineBorder(Color.green, 5, true); // the third parameter - true, says it's round
someTextArea.setBorder(roundedBorder);