Status: New
Owner: ----
Labels: Type-Enhancement Priority-Medium Component-Metanool Milestone-4.6
New issue 726 by
[hidden email]: FM3PropertyDescription>>getRawFrom:
should return false in Boolean properties instead of nil
http://code.google.com/p/moose-technology/issues/detail?id=726It avoids to use the binary message into the Finder with meta-annotated
Boolean properties when using Metanool.
For example, instead of:
each annotations hugeClasses = true
We have:
each annotations hugeClasses
What do you think?
Code to fix it is below.
FM3PropertyDescription>>getRawFrom: element
^ element privateState
attributeAt: self name
ifAbsent: [
(self type = FM3 boolean)
ifTrue: [false]
ifFalse: [nil] ]
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev