public Button add(String buttonLabel) {
   Button addMe = new Button(buttonLabel);
   buttonPanel.add(addMe);
   return addMe;
 }
 public void add(Button button) {
   buttonPanel.add(button);
 }