I have a set of vertically ordered elements. They are displayed with the following code:
JPanel myPanel = new JPanel();
myPanel.setLayout(new BoxLayout(myPanel, BoxLayout.Y_AXIS));
JButton button = new JButton("My Button");
JLabel label = new JLabel("My label!!!!!!!!!!!");
myPanel.add(button);
myPanel.add(label);
I would like to put a horizontal line between my elements (something like <hr>
in html). Does anybody know how it can be done?