Package com.dci.intellij.dbn.connection

Examples of com.dci.intellij.dbn.connection.ConnectionStatusListener


                } finally {
                    // notify post-action
                    transactionListener.afterAction(connectionHandler, action, success);

                    if (action.isStatusChange()) {
                        ConnectionStatusListener statusListener = EventManager.notify(getProject(), ConnectionStatusListener.TOPIC);
                        statusListener.statusChanged(connectionHandler.getId());
                    }
                }
            }
        }
    }
View Full Code Here


            EnvironmentChangeListener listener = EventManager.notify(project, EnvironmentChangeListener.TOPIC);
            listener.environmentConfigChanged(newEnvironmentTypeId);
        }

        if (settingsChanged) {
            ConnectionStatusListener listener = EventManager.notify(project, ConnectionStatusListener.TOPIC);
            listener.statusChanged(connectionId);
        }

    }
View Full Code Here

TOP

Related Classes of com.dci.intellij.dbn.connection.ConnectionStatusListener

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.