Package org.pdfsam.guiclient.plugins

Examples of org.pdfsam.guiclient.plugins.PlugInsLoader


      setIconImage(new ImageIcon(iconUrl).getImage());
          setTitle(GuiClient.getApplicationName()+" Ver. "+GuiClient.getVersion());
         
          //load plugins
          setSplashStep(GettextResource.gettext(Configuration.getInstance().getI18nResourceBundle(),"Loading plugins.."));
          PlugInsLoader pluginsLoader = new PlugInsLoader(Configuration.getInstance().getPluginAbsolutePath());
          pluginsMap = pluginsLoader.loadPlugins();
     
      //Info panel
      JInfoPanel infoPanel = new JInfoPanel(pluginsMap);
      PluginDataModel infoDataModel = new PluginDataModel(infoPanel.getPluginName(), infoPanel.getVersion(), infoPanel.getPluginAuthor(), infoPanel.getClass().getName());
      mainPanel.add(infoPanel,infoPanel.getPluginName());
View Full Code Here

TOP

Related Classes of org.pdfsam.guiclient.plugins.PlugInsLoader

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.