All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.squirrel_sql.client.plugin.PluginSessionCallback Maven / Gradle / Ivy

Go to download

This is the jar that contains the main application classes which are very specific to SQuirreLSQL.

There is a newer version: 3.5.0
Show newest version
package net.sourceforge.squirrel_sql.client.plugin;

import net.sourceforge.squirrel_sql.client.gui.session.SQLInternalFrame;
import net.sourceforge.squirrel_sql.client.gui.session.ObjectTreeInternalFrame;
import net.sourceforge.squirrel_sql.client.session.ISession;

/**
 * Any plugin is required to provide an implementation of this callback interface.
 * The callback implementation has to be returned by IPlugin.sesssionStarted. 
 *
 */
public interface PluginSessionCallback
{
   //void sessionInternalFrameOpened(SessionInternalFrame sessionInternalFrame, ISession sess);

   void sqlInternalFrameOpened(SQLInternalFrame sqlInternalFrame, ISession sess);
   void objectTreeInternalFrameOpened(ObjectTreeInternalFrame objectTreeInternalFrame, ISession sess);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy