| javax.swing.JInternalFrame net.sourceforge.squirrel_sql.client.gui.BaseInternalFrame
All known Subclasses: net.sourceforge.squirrel_sql.client.session.mainpanel.PleaseWaitDialog, net.sourceforge.squirrel_sql.client.gui.db.aliasproperties.AliasPropertiesInternalFrame, net.sourceforge.squirrel_sql.plugins.sqlparam.gui.AskParamValueDialog, net.sourceforge.squirrel_sql.client.gui.db.ConnectionInternalFrame, net.sourceforge.squirrel_sql.client.preferences.GlobalPreferencesSheet, net.sourceforge.squirrel_sql.plugins.sessionscript.ScriptsSheet, net.sourceforge.squirrel_sql.client.preferences.NewSessionPropertiesSheet, net.sourceforge.squirrel_sql.client.gui.db.BaseListInternalFrame, net.sourceforge.squirrel_sql.client.gui.db.DriverInternalFrame, net.sourceforge.squirrel_sql.client.gui.ViewLogsSheet, net.sourceforge.squirrel_sql.plugins.dataimport.gui.ImportFileDialog, net.sourceforge.squirrel_sql.client.gui.db.AliasInternalFrame, net.sourceforge.squirrel_sql.client.gui.session.BaseSessionInternalFrame,
Constructor Summary | |
public | BaseInternalFrame() Creates a non-resizable, non-closable, non-maximizable,
non-iconifiable JInternalFrame with no title. | public | BaseInternalFrame(String title) Creates a non-resizable, non-closable, non-maximizable,
non-iconifiable JInternalFrame with the specified title. | public | BaseInternalFrame(String title, boolean resizable) Creates a non-closable, non-maximizable, non-iconifiable
JInternalFrame with the specified title and with
resizability specified. | public | BaseInternalFrame(String title, boolean resizable, boolean closable) Creates a non-maximizable, non-iconifiable JInternalFrame
with the specified title and with resizability and closability
specified. | public | BaseInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable) Creates a non-iconifiable JInternalFrame with the specified title
and with resizability, closability, and maximizability specified. | public | BaseInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable, boolean iconifiable) Creates a JInternalFrame with the specified title and with
resizability, closability, maximizability and
iconifability specified. |
BaseInternalFrame | public BaseInternalFrame()(Code) | | Creates a non-resizable, non-closable, non-maximizable,
non-iconifiable JInternalFrame with no title.
|
BaseInternalFrame | public BaseInternalFrame(String title)(Code) | | Creates a non-resizable, non-closable, non-maximizable,
non-iconifiable JInternalFrame with the specified title.
Parameters: title - Title for internal frame. |
BaseInternalFrame | public BaseInternalFrame(String title, boolean resizable)(Code) | | Creates a non-closable, non-maximizable, non-iconifiable
JInternalFrame with the specified title and with
resizability specified.
Parameters: title - Title for internal frame. Parameters: resizable - true if frame can be resized. |
BaseInternalFrame | public BaseInternalFrame(String title, boolean resizable, boolean closable)(Code) | | Creates a non-maximizable, non-iconifiable JInternalFrame
with the specified title and with resizability and closability
specified.
Parameters: title - Title for internal frame. Parameters: resizable - true if frame can be resized. Parameters: closeable - true if frame can be closed. |
BaseInternalFrame | public BaseInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable)(Code) | | Creates a non-iconifiable JInternalFrame with the specified title
and with resizability, closability, and maximizability specified.
Parameters: title - Title for internal frame. Parameters: resizable - true if frame can be resized. Parameters: closeable - true if frame can be closed. Parameters: maximizable - true if frame can be maximized. |
BaseInternalFrame | public BaseInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable, boolean iconifiable)(Code) | | Creates a JInternalFrame with the specified title and with
resizability, closability, maximizability and
iconifability specified.
Parameters: title - Title for internal frame. Parameters: resizable - true if frame can be resized. Parameters: closeable - true if frame can be closed. Parameters: maximizable - true if frame can be maximized. Parameters: iconifiable - true if frame can be iconified. |
processKeyEvent | public void processKeyEvent(KeyEvent evt)(Code) | | Modifed version of code from Slavas View class in jEdit.
|
|
|