Uses of Interface
org.apache.tapestry.IAsset

Packages that use IAsset
org.apache.tapestry Tapestry is a comprehensive web application framework, written in Java. 
org.apache.tapestry.asset Implementations of IAsset, as well as the ExternalResource, used to handle private assets. 
org.apache.tapestry.contrib.inspector Implementation of the Tapestry Inspector, a specialized page used to dynamically introspect the construction of an application while it runs. 
org.apache.tapestry.contrib.palette

A powerful component for handling the very common case of moving elements from two different multi selection input boxes. 

org.apache.tapestry.contrib.table.components

Components that make up the core of the tapestry contrib's Table component. 

org.apache.tapestry.contrib.table.components.inserted

Table components that are dynamically inserted. 

org.apache.tapestry.contrib.tree.components

The tapestry contributed tree component. 

org.apache.tapestry.dojo

Classes/utilities making up some of the core ajax functionality for tapestry. 

org.apache.tapestry.form Components for implementing basic HTML Forms. 
org.apache.tapestry.html Components specific to the creation of HTML pages, including sophisticated DHTML JavaScript effects. 
org.apache.tapestry.javascript

Classes/services for handling javascipr libraries. 

org.apache.tapestry.services.impl Service implementations. 
org.apache.tapestry.util A general set of resuable classes and utilities for creating Internet and XML applications. 
org.apache.tapestry.wml Classes and components for main elements of the Wireless Markup Language (WML 1.2). 
 

Uses of IAsset in org.apache.tapestry
 

Methods in org.apache.tapestry that return IAsset
 IAsset AbstractComponent.getAsset(String name)
           
 IAsset IComponent.getAsset(String name)
          Returns the named asset, or null if not found.
 

Methods in org.apache.tapestry with parameters of type IAsset
 void AbstractComponent.addAsset(String name, IAsset asset)
           
 void IComponent.addAsset(String name, IAsset asset)
          Adds an asset to the component.
 String PageRenderSupport.getPreloadedImageReference(IComponent target, IAsset source)
          Operates in the same way that PageRenderSupport.getPreloadedImageReference(IComponent, String) does, except the source is the actual IAsset of an image to preload.
 

Uses of IAsset in org.apache.tapestry.asset
 

Classes in org.apache.tapestry.asset that implement IAsset
 class AbstractAsset
          Base class for IAsset implementations.
 class ContextAsset
          An asset whose path is relative to the ServletContext containing the application.
 class ExternalAsset
          A reference to an external URL.
 class PrivateAsset
          An implementation of IAsset for localizable assets within the JVM's classpath.
 

Methods in org.apache.tapestry.asset that return IAsset
 IAsset DefaultAssetFactory.createAbsoluteAsset(String path, Locale locale, org.apache.hivemind.Location location)
           
 IAsset AssetFactory.createAbsoluteAsset(String path, Locale locale, org.apache.hivemind.Location location)
          Creates a new asset relative to the root of the domain defined by the type of asset.
 IAsset ClasspathAssetFactory.createAbsoluteAsset(String path, Locale locale, org.apache.hivemind.Location location)
           
 IAsset ContextAssetFactory.createAbsoluteAsset(String path, Locale locale, org.apache.hivemind.Location location)
           
 IAsset DefaultAssetFactory.createAsset(org.apache.hivemind.Resource baseResource, IComponentSpecification spec, String path, Locale locale, org.apache.hivemind.Location location)
           
 IAsset AssetFactory.createAsset(org.apache.hivemind.Resource baseResource, IComponentSpecification spec, String path, Locale locale, org.apache.hivemind.Location location)
          Creates a new asset relative to an existing asset.
 IAsset ClasspathAssetFactory.createAsset(org.apache.hivemind.Resource baseResource, IComponentSpecification spec, String path, Locale locale, org.apache.hivemind.Location location)
           
 IAsset ContextAssetFactory.createAsset(org.apache.hivemind.Resource baseResource, IComponentSpecification spec, String path, Locale locale, org.apache.hivemind.Location location)
           
 IAsset DefaultAssetFactory.createAsset(org.apache.hivemind.Resource resource, org.apache.hivemind.Location location)
           
 IAsset AssetFactory.createAsset(org.apache.hivemind.Resource resource, org.apache.hivemind.Location location)
          Creates a new asset based on a known resource.
 IAsset ClasspathAssetFactory.createAsset(org.apache.hivemind.Resource resource, org.apache.hivemind.Location location)
           
 IAsset ContextAssetFactory.createAsset(org.apache.hivemind.Resource resource, org.apache.hivemind.Location location)
           
 IAsset AssetSource.findAsset(org.apache.hivemind.Resource base, IComponentSpecification spec, String path, Locale locale, org.apache.hivemind.Location location)
          Finds an asset relative to the specified base resources OR IComponentSpecification passed in.
 IAsset AssetSourceImpl.findAsset(org.apache.hivemind.Resource base, IComponentSpecification spec, String path, Locale locale, org.apache.hivemind.Location location)
           
 IAsset AssetSource.findAsset(org.apache.hivemind.Resource base, String path, Locale locale, org.apache.hivemind.Location location)
          Finds an asset relative to some existing resource (typically, a page, component or library specification).
 IAsset AssetSourceImpl.findAsset(org.apache.hivemind.Resource base, String path, Locale locale, org.apache.hivemind.Location location)
           
 

Uses of IAsset in org.apache.tapestry.contrib.inspector
 

Methods in org.apache.tapestry.contrib.inspector that return IAsset
 IAsset ShowSpecification.getAsset()
          Returns the IAsset corresponding to the value of the assetName property.
 IAsset ViewTabs.getBannerImage()
           
 IAsset ViewTabs.getFocusImage()
           
 IAsset ViewTabs.getViewImage()
           
 

Uses of IAsset in org.apache.tapestry.contrib.palette
 

Methods in org.apache.tapestry.contrib.palette that return IAsset
abstract  IAsset Palette.getDeselectDisabledImage()
           
abstract  IAsset Palette.getDeselectImage()
           
abstract  IAsset Palette.getDownDisabledImage()
           
abstract  IAsset Palette.getDownImage()
           
abstract  IAsset Palette.getSelectDisabledImage()
           
abstract  IAsset Palette.getSelectImage()
           
abstract  IAsset Palette.getUpDisabledImage()
           
abstract  IAsset Palette.getUpImage()
           
 

Uses of IAsset in org.apache.tapestry.contrib.table.components
 

Methods in org.apache.tapestry.contrib.table.components that return IAsset
abstract  IAsset TableColumns.getArrowDownAsset()
           
abstract  IAsset TableColumns.getArrowUpAsset()
           
 

Uses of IAsset in org.apache.tapestry.contrib.table.components.inserted
 

Methods in org.apache.tapestry.contrib.table.components.inserted that return IAsset
 IAsset SimpleTableColumnSortImage.getSortImage()
           
 IAsset SimpleTableColumnComponent.getSortImage()
           
 IAsset SimpleTableColumnFormComponent.getSortImage()
           
 

Uses of IAsset in org.apache.tapestry.contrib.tree.components
 

Methods in org.apache.tapestry.contrib.tree.components that return IAsset
 IAsset TreeNodeView.getCloseNodeImage()
          Returns the closeNodeImage.
 IAsset TreeNodeView.getConnectImage()
          Returns the openNodeImage.
 IAsset TreeNodeView.getNodeImage()
          Returns the openNodeImage.
 IAsset TreeNodeView.getNodeImageOld()
           
 IAsset TreeNodeView.getOpenNodeImage()
          Returns the openNodeImage.
 

Methods in org.apache.tapestry.contrib.tree.components with parameters of type IAsset
 void TreeNodeView.setCloseNodeImage(IAsset closeNodeImage)
          Sets the closeNodeImage.
 void TreeNodeView.setOpenNodeImage(IAsset openNodeImage)
          Sets the openNodeImage.
 

Uses of IAsset in org.apache.tapestry.dojo
 

Methods in org.apache.tapestry.dojo with parameters of type IAsset
 void AjaxShellDelegate.setDojoFormSource(IAsset formSource)
           
 void AjaxShellDelegate.setDojoPath(IAsset dojoPath)
          Sets the dojo baseRelativePath value.
 void AjaxShellDelegate.setDojoSource(IAsset dojoSource)
          Sets a valid path to the base dojo javascript installation directory.
 void AjaxShellDelegate.setDojoWidgetSource(IAsset widgetSource)
           
 void AjaxShellDelegate.setTapestryPath(IAsset tapestryPath)
          Sets the path to the tapestry javascript modules.
 void AjaxShellDelegate.setTapestrySource(IAsset tapestrySource)
          Sets a valid base path to resolve tapestry core.js.
 

Uses of IAsset in org.apache.tapestry.form
 

Methods in org.apache.tapestry.form that return IAsset
abstract  IAsset ImageSubmit.getDisabledImage()
          parameter.
abstract  IAsset DatePicker.getIcon()
           
abstract  IAsset ImageSubmit.getImage()
          parameter.
 

Uses of IAsset in org.apache.tapestry.html
 

Methods in org.apache.tapestry.html that return IAsset
abstract  IAsset Rollover.getDisabled()
           
abstract  IAsset Image.getImage()
           
abstract  IAsset Rollover.getImage()
           
abstract  IAsset Rollover.getMouseOut()
           
abstract  IAsset Rollover.getMouseOver()
           
abstract  IAsset Script.getScriptAsset()
           
abstract  IAsset Shell.getStylesheet()
           
 

Methods in org.apache.tapestry.html with parameters of type IAsset
protected  String Rollover.getAssetURL(IAsset asset)
          Converts an IAssetbinding into a usable URL.
 

Uses of IAsset in org.apache.tapestry.javascript
 

Methods in org.apache.tapestry.javascript that return IAsset
 IAsset JavascriptManagerImpl.getFirstAsset()
           
 IAsset JavascriptManager.getFirstAsset()
           
 IAsset JavascriptManagerImpl.getFirstFormAsset()
           
 IAsset JavascriptManager.getFirstFormAsset()
           
 IAsset JavascriptManagerImpl.getFirstWidgetAsset()
           
 IAsset JavascriptManager.getFirstWidgetAsset()
           
 IAsset JavascriptManagerImpl.getPath()
           
 IAsset JavascriptManager.getPath()
          The base path to the javascript files.
 IAsset JavascriptManagerImpl.getTapestryAsset()
           
 IAsset JavascriptManager.getTapestryAsset()
          The tapestry js file.
 IAsset JavascriptManagerImpl.getTapestryPath()
           
 IAsset JavascriptManager.getTapestryPath()
          The base path to the tapestry js files.
 

Methods in org.apache.tapestry.javascript with parameters of type IAsset
protected  void SimpleAjaxShellDelegate.appendAssetAsJavascript(StringBuffer str, IRequestCycle cycle, IAsset asset)
          Appends a script tag to include the given asset.
protected  void SimpleAjaxShellDelegate.processPath(StringBuffer str, IRequestCycle cycle, IAsset path)
          Called before including any javascript.
protected  void SimpleAjaxShellDelegate.processTapestryPath(StringBuffer str, IRequestCycle cycle, IAsset path)
          Called before including tapestry's base javascript.
 

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

Methods in org.apache.tapestry.services.impl with parameters of type IAsset
 String DojoAjaxResponseBuilder.getPreloadedImageReference(IComponent target, IAsset source)
          Operates in the same way that PageRenderSupport.getPreloadedImageReference(IComponent, String) does, except the source is the actual IAsset of an image to preload.
 String DefaultResponseBuilder.getPreloadedImageReference(IComponent target, IAsset source)
          Operates in the same way that PageRenderSupport.getPreloadedImageReference(IComponent, String) does, except the source is the actual IAsset of an image to preload.
 String PrototypeResponseBuilder.getPreloadedImageReference(IComponent target, IAsset source)
          Operates in the same way that PageRenderSupport.getPreloadedImageReference(IComponent, String) does, except the source is the actual IAsset of an image to preload.
 String JSONResponseBuilder.getPreloadedImageReference(IComponent target, IAsset source)
          Operates in the same way that PageRenderSupport.getPreloadedImageReference(IComponent, String) does, except the source is the actual IAsset of an image to preload.
 

Uses of IAsset in org.apache.tapestry.util
 

Methods in org.apache.tapestry.util with parameters of type IAsset
 String PageRenderSupportImpl.getPreloadedImageReference(IComponent target, IAsset source)
           
 

Uses of IAsset in org.apache.tapestry.wml
 

Methods in org.apache.tapestry.wml that return IAsset
abstract  IAsset Image.getImage()
           
 



Copyright © 2006-2008 Apache Software Foundation. All Rights Reserved.