Created
August 1, 2021 21:14
-
-
Save sergenes/dcf2be6e67ca7a6f5af443f6845a71df to your computer and use it in GitHub Desktop.
Code1 FSM Contract
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface ListScreenContract { | |
val editButtonTitle: String | |
val isAddButtonVisible: Boolean | |
val isEditNameMode: Boolean | |
val isTableVisible: Boolean | |
fun print() = | |
"${javaClass.simpleName} [$editButtonTitle|$isAddButtonVisible|$isEditNameMode|$isTableVisible]" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment