BooleanParameterImplpublic class BooleanParameterImpl extends ParameterImpl implements org.gudy.azureus2.plugins.ui.config.BooleanParameter
Methods Summary |
---|
public boolean | getDefaultValue()
try {
return ConfigurationDefaults.getInstance().getBooleanParameter(getKey());
} catch (ConfigurationParameterNotFoundException e) {
}
return false;
| public boolean | getValue()
return( config.getBooleanParameter( getKey(), getDefaultValue()));
| public void | setValue(boolean b)
COConfigurationManager.setParameter( getKey(), b );
|
|