//

import java.awt.*;

public class Composant extends java.applet.Applet {

	public void init() {
		setLayout (new FlowLayout(FlowLayout.LEFT,8,10));
		add(new Button ("b1"));
		add(new Button ("b2"));
		add(new Button ("b3"));
		add(new Button ("b10"));
		add(new Button ("b20"));
		add(new Button ("b30"));
		add(new Button ("b100"));
		add(new Button ("b200"));
		add(new Button ("b300"));
		add(new Button ("b1000"));
		add(new Button ("b2000"));
		add(new Button ("b3000"));
		add(new Label ("ici le centre"));
		add(new TextArea ("entrez vos ...",4,30));
	}		
}