data class StringSettings : Settings<StringSettings, StringScheme>
The user-configurable collection of schemes applicable to generating strings.
StringSettings(schemes: MutableList<StringScheme> = DEFAULT_SCHEMES, currentSchemeName: String = DEFAULT_CURRENT_SCHEME_NAME)
The user-configurable collection of schemes applicable to generating strings. |
var currentSchemeName: String
the scheme that is currently active |
|
var schemes: MutableList<StringScheme>
the schemes that the user can choose from |
open var currentScheme: SCHEME
The instance of the scheme that is currently active. |
fun deepCopy(): StringSettings
Returns a deep copy of the settings and the contained schemes. |
|
fun getState(): StringSettings
Returns |
|
fun loadState(state: StringSettings): Unit
Copies the fields of |
val default: StringSettings
The persistent |
|
const val DEFAULT_CURRENT_SCHEME_NAME: String
The default value of the currentSchemeName field. |
|
val DEFAULT_SCHEMES: MutableList<StringScheme>
The default value of the schemes field. |