예제 #1
0
 public Button add(String buttonLabel) {
   Button addMe = new Button(buttonLabel);
   buttonPanel.add(addMe);
   return addMe;
 }
예제 #2
0
 public void add(Button button) {
   buttonPanel.add(button);
 }