I tried to compile in the command line and it fail...
# android
j
I tried to compile in the command line and it failed... but opening ValidationStrategy shows that the class is there
Copy code
sealed class ValidationStrategy(val onEnable: Boolean, val onDisable: Boolean) {
    ...
    /**
     * Flag to start validating the form only after the first submit event.
     */
    class AfterSubmit(onEnable: Boolean, onDisable: Boolean) : ValidationStrategy(onEnable, onDisable)

  ...
    companion object {
        val ALL_TIME = AllTime(true, true)
        val AFTER_SUBMIT = AfterSubmit(true, true)
        val ON_SUBMIT = OnSubmit(false, false)
    }
}