class TranslatableWithArgs : ITranslatableWithArgs
An ITranslatable which contains placeholders for arguments.
TranslatableWithArgs(translatable: ITranslatable, argument: Any)
Creates an ITranslatableWithArgs with the given translatable and its one and only argument. TranslatableWithArgs(translatable: ITranslatable, arg1: Any, vararg otherArguments: Any)
Creates an ITranslatableWithArgs with the given translatable, the first argument arg1 and the otherArguments. TranslatableWithArgs(translatable: ITranslatable, arguments: Array<Any>) |
val arguments: Array<Any>
The arguments which should be used to substitute the placeholders of the translatable. |
|
val translatable: ITranslatable
The ITranslatable as such which contains placeholders and for which translations can be been defined. |
open val id: <ERROR CLASS>
The id of this ITranslatable -- per default it is "Class.namename" |
|
open val name: String
The name of this ITranslatable -- the name together with its Class.name should identify a ITranslatable (see id). |
open fun getDefault(): <ERROR CLASS>
Returns the default representation of this ITranslatable. |