Uses of Interface
org.apache.tapestry.asset.AssetFactory

Packages that use AssetFactory
org.apache.tapestry.asset Implementations of IAsset, as well as the org.apache.tapestry.asset.AssetExternalizer, used to handle private assets. 
org.apache.tapestry.html Components specific to the creation of HTML pages, including sophisticated DHTML JavaScript effects. 
org.apache.tapestry.services Interfaces for Tapestry-related HiveMind services. 
org.apache.tapestry.services.impl   
org.apache.tapestry.util A general set of resuable classes and utilities for creating Internet and XML applications. 
 

Uses of AssetFactory in org.apache.tapestry.asset
 

Classes in org.apache.tapestry.asset that implement AssetFactory
 class ClasspathAssetFactory
          Creates instances of PrivateAsset, which are the holders of classpath: resources.
 class ContextAssetFactory
          All "context:" prefixed asset paths are interpreted relative to the web context (the web application's root folder).
 class DefaultAssetFactory
          Default asset factory used when the asset path contains a prefix that is not recognized.
 

Methods in org.apache.tapestry.asset that return AssetFactory
 AssetFactory AssetFactoryContribution.getFactory()
           
 

Methods in org.apache.tapestry.asset with parameters of type AssetFactory
 void ContextAssetFactory.setClasspathAssetFactory(AssetFactory classpathAssetFactory)
           
 void AssetSourceImpl.setDefaultAssetFactory(AssetFactory defaultAssetFactory)
          Factory used when an unrecognized prefix (typically, an arbitrary URL's scheme) is provided.
 void AssetFactoryContribution.setFactory(AssetFactory factory)
           
 void AssetSourceImpl.setLookupAssetFactory(AssetFactory lookupAssetFactory)
          Factory used when the path has no prefix, and the type of asset must be inferred from the type of resource.
 

Uses of AssetFactory in org.apache.tapestry.html
 

Methods in org.apache.tapestry.html that return AssetFactory
abstract  AssetFactory Body.getAssetFactory()
          Injected
 

Uses of AssetFactory in org.apache.tapestry.services
 

Methods in org.apache.tapestry.services that return AssetFactory
 AssetFactory Infrastructure.getAssetFactory()
          Service that is used to convert Resources into IAssets.
 

Uses of AssetFactory in org.apache.tapestry.services.impl
 

Methods in org.apache.tapestry.services.impl that return AssetFactory
 AssetFactory InfrastructureImpl.getAssetFactory()
           
 

Uses of AssetFactory in org.apache.tapestry.util
 

Constructors in org.apache.tapestry.util with parameters of type AssetFactory
PageRenderSupportImpl(AssetFactory assetFactory, java.lang.String namespace, org.apache.hivemind.Location location)