I'm writing code in GWT that follows MVC pattern.
By the time my view renders, my strings should be escaped into SafeHtml.
I'm trying to decide whether to have my model operate in terms of unsafe strings and do the conversion in the view, or to use SafeHtml in the model and identify errors in when bulding the model.
Is there a best practice?
My reasoning for doing the SafeHtml conversion late is that it is a rendering issue, and that there may not be a need to pay the cost of escaping for strings that are not eventually displayed. On the other hand, data that cannot be converted to SafeHtml is an issue that should be caught early and preclude the model from being "valid".