This message was deleted.
# plugin-development
s
This message was deleted.
r
Is there a reason not to use the regular syntax of:
Copy code
@get:Input
abstract val myProperty: Property<String>
I've also seen people use an
open
class and initialize the non-abstract property from the objects factory, that way you don't need the
@get:
target
t
either
abstract fun getMyProperty()
or
abstract val myProperty
for functions, you need the
get
prefix
oh derp, you already know that
I prefer
Copy code
@get:Input
abstract val myProperty: Property<String>
as a rule
3