Uses of Interface
com.opensymphony.provider.Provider

Packages that use Provider
com.opensymphony.provider   
com.opensymphony.provider.bean   
com.opensymphony.provider.log   
com.opensymphony.provider.xmlprinter   
com.opensymphony.provider.xpath   
 

Uses of Provider in com.opensymphony.provider
 

Subinterfaces of Provider in com.opensymphony.provider
 interface BeanProvider
          BeanProvider providers an abstraction for getting and setting methods of a bean (or object).
 interface LogProvider
          Interface to plug in provider for providing logging.
 interface XMLPrinterProvider
          Provider for pretty printing XML DOM documents to a stream.
 interface XPathProvider
          Provider used for obtaining a single Node, or multiple Nodes from a DOM tree using an XPath expression.
 

Methods in com.opensymphony.provider that return Provider
 Provider ProviderFactory.getProvider(String property, String defaultClass)
          Find appropriate provider.
 

Uses of Provider in com.opensymphony.provider.bean
 

Classes in com.opensymphony.provider.bean that implement Provider
 class DefaultBeanProvider
          BeanProvider implementation for accessing properties.
 class OGNLBeanProvider
          BeanProvider implementation that uses OGNL for expression evaluation.
 

Uses of Provider in com.opensymphony.provider.log
 

Classes in com.opensymphony.provider.log that implement Provider
 class DefaultLogProvider
          Default LogProvider implementation (will be used if no other is available, or there is error in loading another one).
 class FullLogProvider
          Prints all msgs to System.err (in a simple format).
 class Log4JProvider
          LogProvider that uses Categories of Log4J, see the Log4J website for more details.
 class NullLogProvider
          LogProvider implementation that does not log any messages anywhere.
 

Uses of Provider in com.opensymphony.provider.xmlprinter
 

Classes in com.opensymphony.provider.xmlprinter that implement Provider
 class DefaultXMLPrinterProvider
          XMLPrinterProvider implementation with no dependencies to other printers.
 class XalanXMLPrinterProvider
          XMLPrinterProvider implementation that uses the XML serializers built into Xalan 1.x
 

Uses of Provider in com.opensymphony.provider.xpath
 

Classes in com.opensymphony.provider.xpath that implement Provider
 class XalanXPathProvider
          XPathProvider implementation that uses the XPath capabilities of Xalan 1.x.
 


OSCore Project Page