//

import java.awt.*;

public class Composant extends java.applet.Applet {

	public void init() {
		setLayout (new BorderLayout(10,10));
		add("North",new Button ("b3"));
		add("South",new Button ("b30"));
		add("East",new Button ("b300"));
		add("West",new Button ("b3000"));
		add("Center",new TextArea ("entrez vos ...",4,30));
	}		
}