Package com.google.gwt.resources.client
Interface DataResource
-
- All Superinterfaces:
ResourcePrototype
public interface DataResource extends ResourcePrototype
A non-text resource. UseDataResource.MimeType
to provide MIME Types for embedded resources which may not be determined automatically at compile time. UseDataResource.DoNotEmbed
to prevent a resource from being embedded.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
DataResource.DoNotEmbed
Specifies that the resource or resources associated with theResourcePrototype
should not be embedded into the compiled output.static interface
DataResource.MimeType
Specifies the MIME Type of the resource or resources associated with theResourcePrototype
.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description SafeUri
getSafeUri()
Retrieves a URL by which the contents of the resource can be obtained.java.lang.String
getUrl()
Deprecated.UsegetSafeUri()
instead.-
Methods inherited from interface com.google.gwt.resources.client.ResourcePrototype
getName
-
-
-
-
Method Detail
-
getSafeUri
SafeUri getSafeUri()
Retrieves a URL by which the contents of the resource can be obtained. This will be an absolute URL.
-
getUrl
@Deprecated java.lang.String getUrl()
Deprecated.UsegetSafeUri()
instead.Retrieves a URL by which the contents of the resource can be obtained. This will be an absolute URL.
-
-