Package freenet.pluginmanager

Examples of freenet.pluginmanager.FredPluginBaseL10n


    if(request.isPartSet("translating_for")) {
      final String translateFor = request.getPartAsStringFailsafe("translating_for", 255);

      for(PluginInfoWrapper pluginInfo : this.core.node.pluginManager.getPlugins()) {
        if(translateFor.equals(pluginInfo.getPluginClassName()) && pluginInfo.isBaseL10nPlugin()) {
          FredPluginBaseL10n plugin = (FredPluginBaseL10n) pluginInfo.getPlugin();
          this.translatingFor = translateFor;
          this.base = new PluginL10n(plugin).getBase();
        }
      }
View Full Code Here

TOP

Related Classes of freenet.pluginmanager.FredPluginBaseL10n

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.