Package net.sourceforge.squirrel_sql.client.gui.db

Examples of net.sourceforge.squirrel_sql.client.gui.db.AliasesListInternalFrame


   }

   protected void moveToFrontAndSelectAliasFrame()
   {
      IApplication app = getApplication();
      AliasesListInternalFrame tw = app.getWindowManager().getAliasesListInternalFrame();
      tw.moveToFront();
      try
      {
         tw.setSelected(true);
      }
      catch (PropertyVetoException ex)
      {
            //i18n[DeleteAliasAction.error.selectingwindow=Error selecting window]
         s_log.error(s_stringMgr.getString("DeleteAliasAction.error.selectingwindow"), ex);
View Full Code Here


    if (application != null)
    {
      WindowManager windowManager = application.getWindowManager();
      if (windowManager != null)
      {
        AliasesListInternalFrame aliasesListInternalFrame = windowManager.getAliasesListInternalFrame();
        if (aliasesListInternalFrame != null)
        {
          aliasesListInternalFrame.enableDisableActions();
        }
      }
    }
   }
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.client.gui.db.AliasesListInternalFrame

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.