Here you can find the source of showInvalidJarPathMessage(String jarPath)
private static void showInvalidJarPathMessage(String jarPath)
//package com.java2s; //License from project: Open Source License import javax.swing.JOptionPane; public class Main { private static void showInvalidJarPathMessage(String jarPath) { String message = "Unable to restart cmanager. Settings could not be applied.\n" + "Expected path: " + jarPath;/*from w w w . j a va 2s . com*/ JOptionPane.showMessageDialog(null, message, "jar path", JOptionPane.ERROR_MESSAGE); } }