query.equalsIgnoreCase("true")
? Boolean.TRUE
: query.equalsIgnoreCase("false")
? Boolean.FALSE
: null;
gui = new PlaygroundView(this, mode);
gui.setLoading(true);
cajolingService.getBuildInfo(new AsyncCallback<String>() {
public void onFailure(Throwable caught) {
gui.setLoading(false);
gui.addCompileMessage(caught.getMessage());