ExtendedElement buttonLabels = source.child("buttons");
nextButton = new JButton(buttonLabels.attribute("next"));
nextButton.setFocusable(false);
nextButton.setActionCommand("next");
nextButton.addActionListener(this);
previousButton = new JButton(buttonLabels.attribute("previous"));
previousButton.setFocusable(false);
previousButton.setActionCommand("previous");
previousButton.addActionListener(this);
upButton = new JButton(buttonLabels.attribute("up"));
upButton.setFocusable(false);