Package net.sourceforge.squirrel_sql.client.gui.mainframe

Examples of net.sourceforge.squirrel_sql.client.gui.mainframe.MainFrameWindowState


    return _mainFrameState;
  }

  public synchronized void setMainFrameWindowState(MainFrameWindowState data)
  {
    final MainFrameWindowState oldValue = _mainFrameState;
    _mainFrameState = data;
    getPropertyChangeReporter().firePropertyChange(IPropertyNames.MAIN_FRAME_STATE,
                      oldValue, _mainFrameState);
  }
View Full Code Here


  }

  private void setupFromPreferences()
  {
    final SquirrelPreferences prefs = _app.getSquirrelPreferences();
    final MainFrameWindowState ws = prefs.getMainFrameWindowState();

      prepareAliasWindow(ws);
      prepareDriversWindow(ws);
    prefs.setMainFrameWindowState(new MainFrameWindowState(this));
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.client.gui.mainframe.MainFrameWindowState

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.