Examples of JDesktopPane


Examples of javax.swing.JDesktopPane

    /*
     * Class under test for void iconifyFrame(JInternalFrame)
     */
    public void testIconifyFrame() {
        frame.setUI(ui);
        JDesktopPane desktop = new JDesktopPane();
        desktop.setSize(new Dimension(100, 200));
        desktop.add(frame);
        ui.iconifyFrame(frame);
        assertTrue("iconified", desktop.isAncestorOf(frame.getDesktopIcon()));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.