FileDocCategorySizeDatePackage
IntsParameter.javaAPI DocAzureus 3.0.3.41656Thu Jun 03 13:36:52 BST 2004org.gudy.azureus2.pluginsimpl.local.ui.config

IntsParameter

public class IntsParameter extends ParameterImpl
author
epall

Fields Summary
private int
defaultValue
private int[]
values
private String[]
labels
Constructors Summary
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());
	
Methods Summary
public intgetDefaultValue()

		return defaultValue;
	
public java.lang.String[]getLabels()

	  return labels;
	
public int[]getValues()

	  return values;