Uses of Interface
org.apache.commons.scxml.PathResolver

Packages that use PathResolver
org.apache.commons.scxml The Commons SCXML executor and core concepts. 
org.apache.commons.scxml.env A collection of classes that may be commonly used to bridge the SCXML executor to the runtime environment. 
org.apache.commons.scxml.env.servlet A collection of classes useful in the servlet container environment. 
org.apache.commons.scxml.io A collection of classes for reading in and writing out SCXML documents, to and from the Commons SCXML Java object model. 
org.apache.commons.scxml.model A collection of classes needed to model SCXML documents. 
 

Uses of PathResolver in org.apache.commons.scxml
 

Methods in org.apache.commons.scxml that return PathResolver
 PathResolver PathResolver.getResolver(String ctxPath)
          Get a PathResolver rooted at this context sensitive path.
 

Uses of PathResolver in org.apache.commons.scxml.env
 

Classes in org.apache.commons.scxml.env that implement PathResolver
 class URLResolver
          A PathResolver implementation that resolves against a base URL.
 

Methods in org.apache.commons.scxml.env that return PathResolver
 PathResolver URLResolver.getResolver(String ctxPath)
           
 

Uses of PathResolver in org.apache.commons.scxml.env.servlet
 

Classes in org.apache.commons.scxml.env.servlet that implement PathResolver
 class ServletContextResolver
          A wrapper around ServletContext that implements PathResolver.
 

Methods in org.apache.commons.scxml.env.servlet that return PathResolver
 PathResolver ServletContextResolver.getResolver(String ctxPath)
          Retrieve the PathResolver rooted at the given path.
 

Uses of PathResolver in org.apache.commons.scxml.io
 

Methods in org.apache.commons.scxml.io with parameters of type PathResolver
static SCXML SCXMLDigester.digest(String documentRealPath, ErrorHandler errHandler, PathResolver pathResolver)
          Deprecated. API for standalone usage where the SCXML document is a URI.
static SCXML SCXMLDigester.digest(String documentRealPath, ErrorHandler errHandler, PathResolver pathResolver, List customActions)
          Deprecated. API for standalone usage where the SCXML document is a URI.
static org.apache.commons.digester.Digester SCXMLParser.newInstance(PathResolver pr)
          Obtain a SCXML digester instance for further customization.
static org.apache.commons.digester.Digester SCXMLDigester.newInstance(PathResolver pr)
          Deprecated. Obtain a SCXML digester instance for further customization.
static org.apache.commons.digester.Digester SCXMLParser.newInstance(SCXML scxml, PathResolver pr)
          Obtain a SCXML digester instance for further customization.
static org.apache.commons.digester.Digester SCXMLDigester.newInstance(SCXML scxml, PathResolver pr)
          Deprecated. Obtain a SCXML digester instance for further customization.
static org.apache.commons.digester.Digester SCXMLParser.newInstance(SCXML scxml, PathResolver pr, List customActions)
          Obtain a SCXML digester instance for further customization.
static org.apache.commons.digester.Digester SCXMLDigester.newInstance(SCXML scxml, PathResolver pr, List customActions)
          Deprecated. Obtain a SCXML digester instance for further customization.
static SCXML SCXMLParser.parse(String documentRealPath, ErrorHandler errHandler, PathResolver pathResolver)
          API for standalone usage where the SCXML document is a URI.
static SCXML SCXMLParser.parse(String documentRealPath, ErrorHandler errHandler, PathResolver pathResolver, List customActions)
          API for standalone usage where the SCXML document is a URI.
 

Constructors in org.apache.commons.scxml.io with parameters of type PathResolver
SCXMLDigester.DigestSrcAttributeRule(List customActions, PathResolver pr)
          Deprecated. Constructor.
SCXMLDigester.DigestSrcAttributeRule(SCXML root, List customActions, PathResolver pr)
          Deprecated. Constructor.
SCXMLDigester.ParseDataRule(PathResolver pr)
          Deprecated. Constructor.
SCXMLDigester.SetPathResolverRule(PathResolver pr)
          Deprecated. Constructor.
 

Uses of PathResolver in org.apache.commons.scxml.model
 

Methods in org.apache.commons.scxml.model that return PathResolver
 PathResolver PathResolverHolder.getPathResolver()
          Get the PathResolver.
 PathResolver Invoke.getPathResolver()
          Get the PathResolver.
 PathResolver Assign.getPathResolver()
          Get the PathResolver.
 

Methods in org.apache.commons.scxml.model with parameters of type PathResolver
 void PathResolverHolder.setPathResolver(PathResolver pathResolver)
          Set the PathResolver to use.
 void Invoke.setPathResolver(PathResolver pathResolver)
          Set the PathResolver.
 void Assign.setPathResolver(PathResolver pathResolver)
          Set the PathResolver.
 



Copyright © 2005-2008 The Apache Software Foundation. All Rights Reserved.