//package com.oracle.java.clientlibs;


import javax.swing.JDialog;
import javax.swing.JFrame;

public class Test111 
{ 
    public static void main(String args[]) 
    { 
        JFrame frame = new JFrame("FRAME"); 
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
        frame.setBounds(200, 50, 300, 300); 
        frame.setVisible(true); 

        JDialog dlg = new JDialog(frame, "DLG 1", false); 
        dlg.setBounds(50, 100, 200, 200); 
        dlg.setVisible(true); 

        JDialog dlg2 = new JDialog(frame, "DLG 2", false); 
        dlg2.setBounds(450, 100, 200, 200); 
        dlg2.setVisible(true); 
    } 
} 