Uses of Class
ice.storm.ContentLoader

Packages that use ContentLoader
ice.pilots.html4   
ice.storm   
 

Uses of ContentLoader in ice.pilots.html4
 

Methods in ice.pilots.html4 with parameters of type ContentLoader
 void ThePilot.parse(ContentLoader cl)
           
 

Uses of ContentLoader in ice.storm
 

Methods in ice.storm that return ContentLoader
static ContentLoader UrlMaster.createLoader(String url)
          Deprecated. Please use ContentLoaderFactory to create ContentLoader.
 ContentLoader Hint.getContentLoader()
          For the sources where a ContentLoader is available.
 ContentLoader ContentLoaderFactory.createContentLoader(URL url, String contentType)
           
 ContentLoader ContentLoaderFactory.createContentLoader(String url, String contentType)
           
 ContentLoader ContentLoaderFactory.createContentLoader(URL baseUrl, String loc, String contentType)
           
 ContentLoader ContentLoaderFactory.createContentLoader(URLConnection urlConnection, String contentType)
           
 ContentLoader ContentLoaderFactory.createContentLoader(URL baseURL, InputStream in, String contentType)
           
 

Methods in ice.storm with parameters of type ContentLoader
 void StormBase.renderContent(ContentLoader cl, String viewportName)
          Display content in a viewport.
 void StormBase.renderViewportContent(ContentLoader cl, Viewport view)
          Display content in an explicit viewport object.
 void StormBase.renderContentFully(ContentLoader contentLoader, String viewportName)
          Display content in a viewport.
 void StormBase.renderVieportContentFully(ContentLoader contentLoader, Viewport viewport)
          Deprecated. Use StormBase.renderViewportContentFully(ContentLoader, Viewport) instead.
 void StormBase.renderViewportContentFully(ContentLoader contentLoader, Viewport viewport)
          Display content in a viewport.
 void PseudoHistoryManager.goingSomewhere(ContentLoader cl, String viewportId)
           
 Pilot PilotFactory.createPilot(ContentLoader loader)
          Create a pilot to display the content that is being loaded by the ContentLoader.
 boolean PilotFactory.isContentTypeSupported(Pilot pilot, ContentLoader loader, String contentType)
          Check whether the specified pilot can display the data of a given content type or that is going to be loaded by the ContentLoader.
 void Pilot.parse(ContentLoader cl)
          Parse the data from the ContentLoader
 void HistoryManager.goingSomewhere(ContentLoader cl, String viewportId)
          Makes sure that histories are updated if a location is rendered without the use of recorded histories, e.g.
 Pilot DefaultFactory.createPilot(ContentLoader l)
           
 boolean DefaultFactory.isContentTypeSupported(Pilot pilot, ContentLoader l, String contentType)
           
protected  String DefaultFactory.extractContentType(ContentLoader l)
           
 

Constructors in ice.storm with parameters of type ContentLoader
Hint(Object theSource, ContentLoader cl)
          For sources which don't have a ContentLoader available, use new Hint(this,null); Usually, a Hint object is created from a Pilot's parse method, where a ContentLoader is always available.