Let's say you have the following MyPanel.ui.xml:
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:gwt="urn:import:com.google.gwt.user.client.ui">
<div>
<span id="content">Some content</span>
<gwt:RadioButton ...>
...
</gwt:RadioButton>
<!-- etc. -->
</div>
</ui:UiBinder>
And this "maps" to MyPanel.java:
public class MyPanel extends Composite {
private RadioButton radioButton;
// ...
}
Then are there any use cases where you would want/need to use SafeHtml or SafeHtmlBuilder, or is the "Safe*" API only needed when working with HTML objects and their underlying DOM structures?
If there are use cases where UiBinder-backed composites would need to use Safe*, perhaps a simple code example would help me connect the dots. Thanks in advance!