Open
Description
Module
s should probably use the ConvertService
when setting their input or output values. Currently they do not, which forces higher up code to decide if conversion should be done or not (e.g. in the WidgetModel
).
this would require:
AbstractModule
and perhapsModule
itself should be madeContextual
, instead of justCommandModule
.- Expose an
@Parameter ConvertService
to modules - Update overriding
setInput
andsetOutput
to also convert values.