public IntsParameter(org.gudy.azureus2.plugins.PluginConfig config, String key, String label, int defaultValue, int[] values, String[] labels)
super(config,key, label);
this.defaultValue = defaultValue;
this.values = values;
this.labels = labels;
COConfigurationManager.setIntDefault(getKey(), getDefaultValue());
|