Package com.biglybt.pif.ui.config
Interface PasswordParameter
-
- All Superinterfaces:
ConfigParameter
,Parameter
- All Known Implementing Classes:
PasswordParameterImpl
public interface PasswordParameter extends Parameter
-
-
Field Summary
Fields Modifier and Type Field Description static int
ET_MD5
static int
ET_PLAIN
static int
ET_SHA1
-
Fields inherited from interface com.biglybt.pif.ui.config.Parameter
MODE_ADVANCED, MODE_BEGINNER, MODE_INTERMEDIATE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
getValue()
int
getWidthInCharacters()
void
setValue(java.lang.String plain_password)
void
setWidthInCharacters(int widthInCharacters)
Set a width hint for displaying the text field-
Methods inherited from interface com.biglybt.pif.config.ConfigParameter
addConfigParameterListener, removeConfigParameterListener
-
Methods inherited from interface com.biglybt.pif.ui.config.Parameter
addListener, addValidator, getConfigKeyName, getGenerateIntermediateEvents, getLabelKey, getLabelText, getMinimumRequiredUserMode, getValueObject, hasBeenSet, isEnabled, isForUIType, isVisible, removeListener, resetToDefault, setAllowedUiTypes, setEnabled, setGenerateIntermediateEvents, setIndent, setLabelKey, setLabelText, setMinimumRequiredUserMode, setVisible
-
-
-
-
Field Detail
-
ET_PLAIN
static final int ET_PLAIN
- See Also:
- Constant Field Values
-
ET_SHA1
static final int ET_SHA1
- See Also:
- Constant Field Values
-
ET_MD5
static final int ET_MD5
- See Also:
- Constant Field Values
-
-
Method Detail
-
getValue
byte[] getValue()
-
setValue
void setValue(java.lang.String plain_password)
-
setWidthInCharacters
void setWidthInCharacters(int widthInCharacters)
Set a width hint for displaying the text field- Since:
- BiglyBT 1.9.0.1
-
getWidthInCharacters
int getWidthInCharacters()
- Returns:
- width hint in characters for displaying the text field
- Since:
- BiglyBT 1.9.0.1
-
-