

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

public class AWTSwing
{
	private JComboBox combo;
	private Button bouton;

	public AWTSwing ()
	{	JFrame frame = new JFrame ("");
		frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
		frame.setBounds (300, 300, 200, 300);
		
		String [] a = {"oui", "non", "peut etre"};
		combo = new JComboBox (a);
		frame.getContentPane ().add (combo, BorderLayout.NORTH);
		bouton = new Button ("Coucou");
		frame.getContentPane ().add (bouton, BorderLayout.CENTER);
		
		frame.setVisible (true);
	}
	
	public static void main (String argv [])
	{	new AWTSwing ();
	}
}