Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2009-2014 Black Rook Software
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser Public License v2.1
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
 ******************************************************************************/

import java.awt.Component;

import java.awt.Toolkit;

import javax.swing.JOptionPane;

public class Main {
    /**
     * Show an alert window.
     * @param message   The message to show.
     */
    public static void error(String message) {
        error(message, null);
    }

    /**
     * Show an alert window.
     * @param message   The message to show.
     * @param parent   Parent component of this dialog.
     */
    public static void error(String message, Component parent) {
        Toolkit.getDefaultToolkit().beep();
        JOptionPane.showMessageDialog(parent, message, "Alert", JOptionPane.ERROR_MESSAGE);
    }
}