Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import javax.swing.JOptionPane;

public class Main {
    /**
     * Displays a {@link JOptionPane} as an information message.
     *
     * @param title The title of the dialog.
     * @param message The message inside the dialog.
     */
    public static void showInformationMessage(String title, String message) {
        JOptionPane.showMessageDialog(null, message, title, JOptionPane.INFORMATION_MESSAGE);
    }
}