Java JOptionPane Message exibeMsg(String msg, int tipoMsg)

Here you can find the source of exibeMsg(String msg, int tipoMsg)

Description

exibe Msg

License

Open Source License

Declaration

public static void exibeMsg(String msg, int tipoMsg) 

Method Source Code

//package com.java2s;
/*/*from w  w w .  ja  v a2 s. c  om*/
  Copyright (C) 2001-2012, Joao Medeiros, Paulo Vilela (grafix2.com)
      
  Este arquivo ? parte do programa Grafix2.com
      
  Grafix2.com ? um software livre; voc? pode redistribui-lo e/ou 
  modifica-lo dentro dos termos da Licen?a P?blica Geral GNU como 
  publicada pela Funda??o do Software Livre (FSF); na vers?o 2 da 
  Licen?a.
    
  Este programa ? distribuido na esperan?a que possa ser ?til, 
  mas SEM NENHUMA GARANTIA; sem uma garantia implicita de ADEQUA??O a qualquer
  MERCADO ou APLICA??O EM PARTICULAR. Veja a
  Licen?a P?blica Geral GNU para maiores detalhes.
    
  Voc? deve ter recebido uma c?pia da Licen?a P?blica Geral GNU
  junto com este programa, se n?o, veja uma c?pia em
  <http://www.gnu.org/licenses/>
      
 */

import java.awt.Frame;

import javax.swing.JOptionPane;

public class Main {
    private static String tituloJanelaMsg = "???";
    private static Frame framePrincipal = null;

    public static void exibeMsg(String msg, int tipoMsg) {
        JOptionPane.showMessageDialog(framePrincipal, msg, tituloJanelaMsg, tipoMsg);
    }
}

Related

  1. displayMessage(String message)
  2. displayMessagePane(String desc, String title)
  3. excMsg(String msg, Exception ex)
  4. excMsg(String msg, Exception ex)
  5. excMsg(String msg, Throwable t)
  6. getIconForType(int messageType)
  7. getInput(String msg, String defaultInput)
  8. getInt(String message, int min, int max, Integer initialValue)
  9. getIntegerFromImput(String message, int min, int max)