I'm trying to understand the different between the uses of setText()/setLabel Vs. setTextSimple / setLabelSimple in the FHIR Reference implementation.
What use cases would require the use of the String_ primitive type instead of the plain old setLabelSimple() approach? I've tried looking at several examples of use, and I cant really see why i'd favor one over the other. As far as I can see, both perform exactly the same, and the String_ object's value gets assigned to a plain old Java String object anyway...
Is there a preferred mode of use that anyone would recommend ? and if so, why ?