publicclassTestBorderLayout{publicstaticvoidmain(String[] args){Frame frame =newFrame("TestBorderLayout");Button east =newButton("East");Button west =newButton("West");Button south =newButton("South");Button north =newButton("North");Button center =newButton("Center");
frame.add(east,BorderLayout.EAST);
frame.add(west,BorderLayout.WEST);
frame.add(south,BorderLayout.SOUTH);
frame.add(north,BorderLayout.NORTH);
frame.add(center,BorderLayout.CENTER);
frame.setSize(200,200);
frame.setVisible(true);}}