net.dankito.utils.ui.dialogs.ConfirmationDialogConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-utils Show documentation
Show all versions of java-utils Show documentation
Some basic utils needed in many projects
package net.dankito.utils.ui.dialogs
data class ConfirmationDialogConfig(val showNoButton: Boolean = true, val noButtonText: String? = null,
val showThirdButton: Boolean = false, val thirdButtonText: String? = null,
val confirmButtonText: String? = null)