Here you can find the source of tellUserToChoose(JFrame jFrame)
public static void tellUserToChoose(JFrame jFrame)
//package com.java2s; //License from project: Open Source License import javax.swing.JFrame; import javax.swing.JOptionPane; public class Main { public static void tellUserToChoose(JFrame jFrame) { JOptionPane.showMessageDialog(jFrame, "Please choose a game!"); }/*w ww.j a v a 2s.co m*/ }