}
/** Initializes the AboutPane. */
public AboutPane()
{
MultilineLabel lbl = new MultilineLabel();
Border border = BorderFactory.createEmptyBorder(10, 10, 10, 10);
JLabel title = new JLabel("ADRS");
Font font1 = new Font("Arial", Font.PLAIN, 24);
Font font2 = new Font("Arial", Font.PLAIN, 12);
super.setBorder(border);
super.setLayout(new BorderLayout());
super.setOpaque(false);
title.setFont(font1);
lbl.setText(ABOUT_TXT);
lbl.setFont(font2);
super.add(title, BorderLayout.NORTH);
super.add(lbl, BorderLayout.CENTER);
}