Package net.sourceforge.squirrel_sql.plugins.dbcopy.event

Examples of net.sourceforge.squirrel_sql.plugins.dbcopy.event.ErrorEvent


     * Send an error event message to all CopyTableListeners
     * @param type the type of the ErrorEvent.
     * @param e the exception that was encountered.
     */   
    private void sendErrorEvent(int type, Exception e) {
        ErrorEvent event = new ErrorEvent(prov, type);
        event.setException(e);
        Iterator<CopyTableListener> i = listeners.iterator();
        while (i.hasNext()) {
            CopyTableListener listener = i.next();
            listener.handleError(event);
        }       
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.plugins.dbcopy.event.ErrorEvent

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.