Live template for creating sealed event
Example of live template that I use to generate sealed interface with classes and objects to be used as events
IntelliJ Idea Android Studio
- Open live templates settings by double-Shift and entering Live template.
- Add template group, for example _Custom
- Add live template with next settings:
- Abbreviation:
sev
- Applicable context:
Top level
- Description:
Sealed event
Template text:
sealed interface $NAME$Event {
object ScreenDisplayed : $NAME$Event
$END$
}
2023-05-10 17:30:02