Package freenet.clients.http

Examples of freenet.clients.http.ConfigToadlet


    if(isConfigurablePlugin) {
      config = FilePersistentConfig.constructFilePersistentConfig(new File(node.getCfgDir(), "plugin-"+getPluginClassName()+".ini"), "config options for plugin: "+getPluginClassName());
      subconfig = new SubConfig(getPluginClassName(), config);
      ((FredPluginConfigurable)plug).setupConfig(subconfig);
      config.finishedInit();
      configToadlet = new ConfigToadlet(pr.getHLSimpleClient(), config, subconfig, node, node.clientCore, (FredPluginConfigurable)plug);
    } else {
      config = null;
      subconfig = null;
      configToadlet = null;
    }
View Full Code Here

TOP

Related Classes of freenet.clients.http.ConfigToadlet

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.