import javax.swing.*;

/**
 * @author Remi Forax
 *
 */
public class InputDialogExample {

  public static void main(String[] args) {
    JOptionPane.showInputDialog(
      null, "Entrer votre nom","question 3012",
      JOptionPane.INFORMATION_MESSAGE);
      
    JOptionPane.showInputDialog(
      null, "Les petits pois sont","question 3012",
      JOptionPane.QUESTION_MESSAGE,null,
      new String[]{"Rouge","Vert","Bleue"},"Vert");
      
    JOptionPane.showInputDialog(
      null, "Les petits pois sont","question 3012",
      JOptionPane.QUESTION_MESSAGE,null,
      new String[]{"Rouge","Vert","Bleue"},null);
  }
  
}
