Examples of registerTransientParameter()


Examples of org.gudy.azureus2.core3.config.impl.ConfigurationManager.registerTransientParameter()

    ConfigurationManager config = ConfigurationManager.getInstance();
    while (itr.hasNext()) {
      entry = (Map.Entry)itr.next();
      key = this.key_prefix + (String)entry.getKey();
      this.params_monitored.add(key);
      config.registerTransientParameter(key);
      config.setParameterRawNoNotify(key, entry.getValue());
      config.addParameterListener(key, this);
    }
   
    config.addListener(this);
View Full Code Here

Examples of org.gudy.azureus2.core3.config.impl.ConfigurationManager.registerTransientParameter()

  // Not exposed in the plugin API...
  public void registerParameter(String full_param) {
    shouldBeInitialised(true);
    if (!this.params_monitored.add(full_param)) {return;}
    ConfigurationManager config = ConfigurationManager.getInstance();
    config.registerTransientParameter(full_param);
    config.addParameterListener(full_param, this);
    if (this.migrate_settings && COConfigurationManager.hasParameter(full_param, true)) {
      this.parameterChanged(full_param);
    }
  }
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.