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.setVisible(true);
frame.pack();}}