Uses of Class
com.google.gwt.safehtml.shared.annotations.IsTrustedResourceUri
-
Packages that use IsTrustedResourceUri Package Description com.google.gwt.dom.builder.client Classes used to build DOM elements.com.google.gwt.dom.builder.shared Classes used to build DOM elements.com.google.gwt.dom.client Classes for low-level DOM programming.com.google.gwt.jsonp.client Classes for sending cross domain requests to an http server, potentially on a different domain, via JSONP.com.google.gwt.user.client.ui Widgets, Panels, and other user-interface classes. -
-
Uses of IsTrustedResourceUri in com.google.gwt.dom.builder.client
Method parameters in com.google.gwt.dom.builder.client with annotations of type IsTrustedResourceUri Modifier and Type Method Description LinkBuilder
DomLinkBuilder. href(java.lang.String href)
FrameBuilder
DomFrameBuilder. src(SafeUri src)
FrameBuilder
DomFrameBuilder. src(java.lang.String src)
ScriptBuilder
DomScriptBuilder. src(java.lang.String src)
-
Uses of IsTrustedResourceUri in com.google.gwt.dom.builder.shared
Method parameters in com.google.gwt.dom.builder.shared with annotations of type IsTrustedResourceUri Modifier and Type Method Description LinkBuilder
HtmlLinkBuilder. href(java.lang.String href)
LinkBuilder
LinkBuilder. href(java.lang.String href)
The URI of the linked resource.FrameBuilder
FrameBuilder. src(SafeUri src)
A URI designating the initial frame contents.FrameBuilder
FrameBuilder. src(java.lang.String src)
A URI designating the initial frame contents.FrameBuilder
HtmlFrameBuilder. src(SafeUri src)
FrameBuilder
HtmlFrameBuilder. src(java.lang.String src)
ScriptBuilder
HtmlScriptBuilder. src(java.lang.String src)
ScriptBuilder
ScriptBuilder. src(java.lang.String src)
URI designating an external script. -
Uses of IsTrustedResourceUri in com.google.gwt.dom.client
Method parameters in com.google.gwt.dom.client with annotations of type IsTrustedResourceUri Modifier and Type Method Description void
ObjectElement. setData(SafeUri data)
A URI specifying the location of the object's data.void
ObjectElement. setData(java.lang.String data)
A URI specifying the location of the object's data.void
LinkElement. setHref(java.lang.String href)
The URI of the linked resource.void
FrameElement. setSrc(SafeUri src)
A URI designating the initial frame contents.void
FrameElement. setSrc(java.lang.String src)
A URI designating the initial frame contents.void
ScriptElement. setSrc(java.lang.String src)
URI designating an external script. -
Uses of IsTrustedResourceUri in com.google.gwt.jsonp.client
Method parameters in com.google.gwt.jsonp.client with annotations of type IsTrustedResourceUri Modifier and Type Method Description JsonpRequest<java.lang.Boolean>
JsonpRequestBuilder. requestBoolean(java.lang.String url, AsyncCallback<java.lang.Boolean> callback)
JsonpRequest<java.lang.Double>
JsonpRequestBuilder. requestDouble(java.lang.String url, AsyncCallback<java.lang.Double> callback)
JsonpRequest<java.lang.Integer>
JsonpRequestBuilder. requestInteger(java.lang.String url, AsyncCallback<java.lang.Integer> callback)
<T extends JavaScriptObject>
JsonpRequest<T>JsonpRequestBuilder. requestObject(java.lang.String url, AsyncCallback<T> callback)
Sends a JSONP request and expects a JavaScript object as a result.JsonpRequest<java.lang.String>
JsonpRequestBuilder. requestString(java.lang.String url, AsyncCallback<java.lang.String> callback)
(package private) void
JsonpRequest. send(java.lang.String baseUri)
Sends a request using the JSONP mechanism.void
JsonpRequestBuilder. send(java.lang.String url)
Sends a JSONP request and does not expect any results.JsonpRequest<java.lang.Void>
JsonpRequestBuilder. send(java.lang.String url, AsyncCallback<java.lang.Void> callback)
Sends a JSONP request, does not expect any result, but still allows to be notified when the request has been executed on the server. -
Uses of IsTrustedResourceUri in com.google.gwt.user.client.ui
Method parameters in com.google.gwt.user.client.ui with annotations of type IsTrustedResourceUri Modifier and Type Method Description void
Frame. setUrl(SafeUri url)
Sets the URL of the resource to be displayed within the frame.void
Frame. setUrl(java.lang.String url)
Sets the URL of the resource to be displayed within the frame.Constructor parameters in com.google.gwt.user.client.ui with annotations of type IsTrustedResourceUri Constructor Description Frame(java.lang.String url)
Creates a frame that displays the resource at the specified URL.
-