Skip to content

Instantly share code, notes, and snippets.

@PragmaticCoding
Last active January 13, 2022 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PragmaticCoding/d301cb308d2b4741220c6146cf3ba69c to your computer and use it in GitHub Desktop.
Save PragmaticCoding/d301cb308d2b4741220c6146cf3ba69c to your computer and use it in GitHub Desktop.
Intellij Live Template for JavaFX Property Bean
private val _$PROPERTY$: ObjectProperty<$PROPERTY_TYPE$> = SimpleObjectProperty($INIT_VAL$)
var $PROPERTY$: $PROPERTY_TYPE$
get() = _$PROPERTY$.get()
set(value) = _$PROPERTY$.set(value)
fun $PROPERTY$Property() = _$PROPERTY$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment