import java.awt.*; 
import javax.swing.*; 

public class VisaBorderLayout2 extends JFrame { 
    JButton ๖ster = new JButton("ึster"); 
    JButton norr = new JButton("Norr");
    JButton mitten = new JButton("Mitten");

    public VisaBorderLayout2() { 
	getContentPane().setBackground(Color.yellow);
	๖ster.setForeground(Color.blue);
	๖ster.setBackground(Color.pink);
	norr.setForeground(Color.blue);
	norr.setBackground(Color.pink);
	mitten.setForeground(Color.blue);
	mitten.setBackground(Color.pink);
	setTitle("Visa BorderLayout");
	getContentPane().setLayout(new BorderLayout(5, 10));
	getContentPane().add("East", ๖ster);
	getContentPane().add("North", norr);
	getContentPane().add("Center", mitten);
	setDefaultCloseOperation(EXIT_ON_CLOSE) ;
    } 
    
    public static void main(String [] args) { 
	VisaBorderLayout2 window = new VisaBorderLayout2();
	window.setSize(400,200);
	window.setVisible(true);
    } 
}