Changes between Version 9 and Version 10 of mvc
- Timestamp:
- 06/13/22 11:40:47 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
mvc
v9 v10 67 67 68 68 === TypedModel and RealType 69 The RealType refers to the actual object contained in the model. This is especially relevant for Compound Models, such as the Person model described above. The getCurrentValue function now returns a Person. 69 70 A TypedModel extends a Model by adding a RealType and the functions getCurrentValue and setCurrentValue to get/set the RealType contained by the model. 70 The RealType refers to the actual object contained in the model. This is especially relevant for Compound Models, such as the Person model described above. The getCurrentValue function now returns a Person. 71 The reason that the RealType is not included in Model is because we run into typing issues with the MapModel. 71 The reason that the RealType is not included in Model is because the Models provided in this toolbox, and probably part of the Models developed by the GUI developer, must remain abstract and can not be linked to for instance a Person object already.