Here you can find the source of newDialog(JFrame owner, String title, JPanel content)
public static JDialog newDialog(JFrame owner, String title, JPanel content)
//package com.java2s; // Licensed under the Apache License, Version 2.0 (the "License"); import javax.swing.JDialog; import javax.swing.JFrame; import javax.swing.JPanel; public class Main { public static JDialog newDialog(JFrame owner, String title, JPanel content) { JDialog theDialog = new JDialog(owner, title, true); theDialog.setContentPane(content); theDialog.pack();/*from w w w .j a va 2 s. c om*/ return theDialog; } }