How to set arc width and height for line border. Since time, i have been using the method to create line borders in Java
BorderFactory.createLineBorder(Color.BLACK,2,true);
But the problem is arc width and height are fixed. How could i increase this? Do i need to override paintBorder()
for this?
Any answer is appreciated.