Package-level declarations

Decorator for surrounding a value with constant strings such as quotation marks and braces.

Types

Link copied to clipboard
data class AffixDecorator(var enabled: Boolean = DEFAULT_ENABLED, var descriptor: String = DEFAULT_DESCRIPTOR) : DecoratorScheme

Decorates a string by adding a prefix and suffix.

Link copied to clipboard
class AffixDecoratorEditor(scheme: AffixDecorator, presets: Collection<String>, enabledIf: ComponentPredicate? = null, enableMnemonic: Boolean = true, namePrefix: String = "") : SchemeEditor<AffixDecorator>

Component for editing an AffixDecorator.

Functions

Link copied to clipboard
private fun camelConcat(prefix: String, name: String): String

Prefixes name with prefix, ensuring the resulting string is still in camelCase.