Package net.sourceforge.squirrel_sql.client.plugin

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


    if (loadPlugins)
    {
      _pluginManager.initializePlugins();
      for (Iterator<PluginLoadInfo> it = _pluginManager.getPluginLoadInfoIterator(); it.hasNext();)
      {
        PluginLoadInfo pli = it.next();
        long created = pli.getCreationTime();
        long load = pli.getLoadTime();
        long init = pli.getInitializeTime();
        Object[] params =
          new Object[] { pli.getInternalName(), Long.valueOf(created), Long.valueOf(load),
              Long.valueOf(init), Long.valueOf(created + load + init) };
        String pluginLoadMsg = s_stringMgr.getString("Application.splash.loadplugintime", params);
        s_log.info(pluginLoadMsg);
      }
    }
View Full Code Here

TOP

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

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.