data class ValidationInfo
Carries information on why a component has invalid input.
Based on com.intellij.openapi.ui.ValidationInfo
and com.intellij.openapi.options.ConfigurationException
.
ValidationInfo(message: String, component: JComponent? = null, quickFix: Runnable? = null)
Carries information on why a component has invalid input. |
val component: JComponent?
the component that is not valid |
|
val message: String
the message explaining why the component is not valid |
|
val quickFix: Runnable?
a runnable that can be executed to make the component valid |