/**
* Specifies "live" {@link WidgetInfo} properties externally, to avoid parsing (when
* {@link CreationSupport} is not {@link ILiveCreationSupport}).
*/
public static void setEntry(WidgetInfo widget, Image image, boolean shouldSetSize) {
GwtLiveCacheEntry entry = new GwtLiveCacheEntry();
entry.setImage(image);
entry.shouldSetSize(shouldSetSize);
widget.putArbitraryValue(GwtLiveCacheEntry.class, entry);
}