|
Currently, it is required to declare the name parameter for an implementation property in a Java component:
@Property(name = "myProperty")
String myProperty;
It would be nice to make it optional and determine it by the name of field:
@Property
String myProperty;
A user could still declare the name if needed.
|