public JButton createTwoLineButton(String line1, String line2){
JButton button = new JButton();
button.setLayout(new FlowLayout(FlowLayout.CENTER,0,0));
JLabel l1 = new JLabel(line1);
JLabel l2 = new JLabel(line2);
button.add(l1);
button.add(l2);
return button;
}
public JButton createThreeLineButton(String line1, String line2, String line3){
JButton button = new JButton();
button.setLayout(new FlowLayout(FlowLayout.CENTER,0,0));
JLabel l1 = new JLabel(line1);
JLabel l2 = new JLabel(line2);
JLabel l3 = new JLabel(line3);
button.add(l1);
button.add(l2);
button.add(l3);
return button;
}
}