another question, is there a convenient method to ...
# plugin-development
f
another question, is there a convenient method to convert/pass a
DomainObjectSet
into a
SetProperty
? is the recommendation to just do
setProperty.value(project.provider(() -> domainObjectSet))
? I effectively want the contents of the
DomainObjectSet
to be an input in a task.
Property<DomainObjectSet>
doesn’t feel right and
SetProperty<…>
is probably the closest. In all cases, none of these options feel that ergonomic.