Skip to content
Snippets Groups Projects

Hide base attributes of the models for the GUI

Merged Adham Hashibon requested to merge hide_base_attributes into master
4 files
+ 7
7
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -19,11 +19,11 @@ class BaseDataSourceModel(ABCHasStrictTraits):
@@ -19,11 +19,11 @@ class BaseDataSourceModel(ABCHasStrictTraits):
#: Specifies binding between input slots and source for that value.
#: Specifies binding between input slots and source for that value.
#: Each InputSlotMap instance specifies this information for each of the
#: Each InputSlotMap instance specifies this information for each of the
#: slots.
#: slots.
input_slot_maps = List(Instance(InputSlotMap))
input_slot_maps = List(Instance(InputSlotMap), visible=False)
#: Allows to assign names to the output slots, so that they can be
#: Allows to assign names to the output slots, so that they can be
#: referenced somewhere else (e.g. the KPICalculators).
#: referenced somewhere else (e.g. the KPICalculators).
output_slot_names = List(String())
output_slot_names = List(String(), visible=False)
def __init__(self, factory, *args, **kwargs):
def __init__(self, factory, *args, **kwargs):
self.factory = factory
self.factory = factory
Loading