// Create and specify a BorderLayout layout manager that leaves
// 10 pixels of horizontal and vertical space between components
this.setLayout(new BorderLayout(10, 10));
for(int i = 0; i < 5; i++) {
// Swap the order of these arguments in Java 1.1
this.add(borders[i], new Button(borders[i]));
}