Package javax.swing.plaf.basic

Examples of javax.swing.plaf.basic.BasicDesktopPaneUI$NavigateAction


     * Class under test for
     *     void setUI(DesktopPaneUI)
     *     DesktopPaneUI getUI()
     */
    public void testSetGetUI() {
        BasicDesktopPaneUI ui = new BasicDesktopPaneUI();
        desktop.setUI(ui);
        assertTrue("UI is set", desktop.getUI() == ui);
    }
View Full Code Here

TOP

Related Classes of javax.swing.plaf.basic.BasicDesktopPaneUI$NavigateAction

Copyright © 2018 www.massapicom. 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.