Package com.biglybt.pif.ui.config
Interface ParameterWithHint
-
- All Known Subinterfaces:
DirectoryParameter
,FileParameter
,StringParameter
- All Known Implementing Classes:
DirectoryParameterImpl
,FileParameterImpl
,StringParameterImpl
public interface ParameterWithHint
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getHintKey()
Get the messagebundle key for the Parameter's hint.void
setHintKey(java.lang.String hintKey)
Sets the widget message to a messagebundle key.void
setHintText(java.lang.String text)
Sets the widget message.
-
-
-
Method Detail
-
getHintKey
java.lang.String getHintKey()
Get the messagebundle key for the Parameter's hint. Hints are usually only displayed when the field is empty.- Since:
- BiglyBT 1.9.0.1
-
setHintKey
void setHintKey(java.lang.String hintKey)
Sets the widget message to a messagebundle key. The message text is displayed as a hint for the user, indicating the purpose of the field. Hints are usually only displayed when the field is empty.- Since:
- BiglyBT 1.9.0.1
-
setHintText
void setHintText(java.lang.String text)
Sets the widget message. The text is displayed as a hint for the user, indicating the purpose of the field. Hints are usually only displayed when the field is empty.- Since:
- BiglyBT 1.9.0.1
-
-