Package net.sourceforge.squirrel_sql.client.plugin

Examples of net.sourceforge.squirrel_sql.client.plugin.PluginStatus


  }

  public synchronized void setPluginStatus(int idx, PluginStatus value)
  {
    _pluginStatusInfoColl.ensureCapacity(idx + 1);
    final PluginStatus oldValue = _pluginStatusInfoColl.get(idx);;
    _pluginStatusInfoColl.set(idx, value);
    getPropertyChangeReporter().firePropertyChange(IPropertyNames.PLUGIN_STATUSES,
                      oldValue, value);
  }
View Full Code Here


  @Before
  public void setUp() {
    classUnderTest = new SquirrelPreferences();
    super.serializableToTest = new SquirrelPreferences();
    PluginStatus ps = new PluginStatus("testPlugin");
    ((SquirrelPreferences)serializableToTest).setPluginStatuses(new PluginStatus[] { ps });
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.client.plugin.PluginStatus

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.