Package org.apache.directory.ldapstudio.browser.ui.dialogs

Examples of org.apache.directory.ldapstudio.browser.ui.dialogs.FilterChildrenDialog


     */
    public void run()
    {
        if ( getSelectedEntries().length == 1 )
        {
            FilterChildrenDialog dialog = new FilterChildrenDialog( getShell(), getSelectedEntries()[0]
                .getChildrenFilter(), getSelectedEntries()[0].getConnection() );
            if ( dialog.open() == Dialog.OK )
            {
                String newFilter = dialog.getFilter();

                if ( newFilter == null || "".equals( newFilter.trim() ) )
                {
                    getSelectedEntries()[0].setChildrenFilter( null );
                }
View Full Code Here

TOP

Related Classes of org.apache.directory.ldapstudio.browser.ui.dialogs.FilterChildrenDialog

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.