Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Won't Fix
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: core
-
Labels:None
-
Environment:Mac OS X and Windows XP
-
Number of attachments :
Description
...
<value name="street" field="street1" usage="optional"/>
<value name="street" field="street2" usage="optional"/>
...
will cause that the street2 variable is NULL in the mapping class !!
Same in green ![]()
<structure field="person" usage="optional">
<value name="street" field="street1" usage="optional"/>
</structure>
<value name="street" field="street2" usage="optional"/>
will cause that the street1 variable in the person class is correct and the value of the street2 variable in the mapping class is NULL !!
I will make following workaround for my problem:
Writing own setter methods to set the second value, when first one is set.