Here you can find the source of infoBox(String message, String title)
Parameter | Description |
---|---|
message | message of box |
title | title of box |
public static void infoBox(String message, String title)
//package com.java2s; //License from project: Open Source License import javax.swing.*; public class Main { /**// w w w.j a v a 2 s .com * This method will display an informational * message box to the user * * @param message message of box * @param title title of box */ public static void infoBox(String message, String title) { JOptionPane.showMessageDialog(null, message, title, JOptionPane.INFORMATION_MESSAGE); } }