button.setLocale(locale);
// set buttons' action command to a string containing the date they represent
button.setActionCommand(String.valueOf(day));
button.addActionListener(actionListener);
button.addKeyListener(keyListener);
dayButtons.add(button);
}
// initialize panels
JPanel monthPanel = new JPanel();