final Renderer<ProxyListPlace> placePickerRenderer = new ApplicationListPlaceRenderer();
Cell<ProxyListPlace> placePickerCell = new AbstractCell<ProxyListPlace>() {
@Override
public void render(Context context, ProxyListPlace value, SafeHtmlBuilder sb) {
sb.appendEscaped(placePickerRenderer.render(value));
}
};
CellList<ProxyListPlace> placePickerList = new CellList<ProxyListPlace>(placePickerCell, getMobileListResources());
placePickerList.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.DISABLED);
final ValuePicker<ProxyListPlace> placePickerView = new ValuePicker<ProxyListPlace>(placePickerList);