Examples of FredPluginBaseL10n


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
Copyright © 2018 www.massapi.com. 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.