Package com.ca.directory.jxplorer.search

Examples of com.ca.directory.jxplorer.search.SearchGUI


        SwingUtilities.updateComponentTreeUI(explore.getPopupTool());
        SwingUtilities.updateComponentTreeUI(search.getPopupTool());
        SwingUtilities.updateComponentTreeUI(schema.getPopupTool());

        // Make sure each tree's search dialog gets the new L&F...
        SearchGUI sExplore = explore.getSearchGUI();
        SearchGUI sSearch = search.getSearchGUI();
        SearchGUI sSchema = schema.getSearchGUI();

        if (sExplore != null)
            SwingUtilities.updateComponentTreeUI(sExplore);
        if (sSearch != null)
            SwingUtilities.updateComponentTreeUI(sSearch);
View Full Code Here


     */
    public void openSearch(DN dn)
    {
        JXplorer jx = (JXplorer) owner;
        if (searchGUI == null)
            searchGUI = new SearchGUI(dn, jx);

        searchGUI.setBaseDN(dn);
        searchGUI.setVisible(true);
    }
View Full Code Here

TOP

Related Classes of com.ca.directory.jxplorer.search.SearchGUI

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.