Package org.apache.directory.ldapstudio.browser.core.jobs

Examples of org.apache.directory.ldapstudio.browser.core.jobs.ReloadSchemasJob


    public void run()
    {
        final IConnection connection = schemaPage.getConnection();
        if ( connection != null )
        {
            new ReloadSchemasJob( new IConnection[]
                { connection } ).execute();
            schemaPage.getSchemaBrowser().refresh();
        }
    }
View Full Code Here



    private void reloadSchema()
    {
        final IConnection connection = ConnectionPropertyPage.getConnection( getElement() );
        ReloadSchemasJob job = new ReloadSchemasJob( new IConnection[]
            { connection } );
        RunnableContextJobAdapter.execute( job );
        this.connectionUpdated( connection );
    }
View Full Code Here


    private void reloadSchema()
    {
        final IConnection connection = ConnectionPropertyPage.getConnection( getElement() );
        ReloadSchemasJob job = new ReloadSchemasJob( new IConnection[]
            { connection } );
        RunnableContextJobAdapter.execute( job );
        this.connectionUpdated( connection );
    }
View Full Code Here

    public void run()
    {
        final IConnection connection = schemaBrowser.getSelectedConnection();
        if ( connection != null )
        {
            new ReloadSchemasJob( new IConnection[]
                { connection } ).execute();
            this.schemaBrowser.refresh();
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.directory.ldapstudio.browser.core.jobs.ReloadSchemasJob

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.