| org.apache.tapestry.Asset
Asset | public interface Asset (Code) | | An Asset is any kind of resource that can be exposed to the client web browser. Although quite
often an Asset is a resource in a web application's context folder, within Tapestry, Assets may
also be resources on the classpath (i.e., packaged inside JARs).
An Asset's toString() will return the URL for the resource (the same value as
Asset.toClientURL() ).
|
Method Summary | |
Resource | getResource() Returns the underlying Resource for the Asset. | String | toClientURL() Returns a URL that can be passed, unchanged, to the client in order for it to access the
resource. |
getResource | Resource getResource()(Code) | | Returns the underlying Resource for the Asset.
|
toClientURL | String toClientURL()(Code) | | Returns a URL that can be passed, unchanged, to the client in order for it to access the
resource.
|
|
|