});
}
protected void doJsonp() {
Resource resource = new Resource("http://search.yahooapis.com/WebSearchService/V1/webSearch?appid=YahooDemo&query=finances&format=pdf&output=json&callback=callback");
resource.jsonp().send(new JsonCallback() {
public void onSuccess(Method method, JSONValue response) {
JSONObject obj = (JSONObject) ((JSONObject) response).get("ResultSet");
RootPanel.get().add(new Label("Search Results Available: " + obj.get("totalResultsAvailable")));
}