Interface IAfterEditorInitPluginInterface
-
- All Superinterfaces:
IPlugin
public interface IAfterEditorInitPluginInterface extends IPlugin
This plugin-interface is being called after the aSQLTextEditor
is created.
So it can be used to modify the new createdSQLTextEditor
with some further functions.
For example: The Hibernate-Plugin uses this interface to hide "HQLSession"-ToolOption at startup, which is initialized inside the Hibernate-plugin inside another Interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
init(SQLTextEditor<?> editor)
Initializes additional configurations for the new createdSQLTextEditor
.-
Methods inherited from interface org.teichert.databaseexplorer.pluginInterfaces.IPlugin
getPluginName, getPluginVersion
-
-
-
-
Method Detail
-
init
void init(SQLTextEditor<?> editor)
Initializes additional configurations for the new createdSQLTextEditor
.- Parameters:
editor
-
-
-