Uses of Interface
javax.xml.transform.Source

Packages that use Source
javax.xml.transform Base "TRAX" API for XSLT transformers. 
javax.xml.transform.dom Support for DOM inputs and outputs to transformers. 
javax.xml.transform.sax Support for SAX2-based XSLT transformers. 
javax.xml.transform.stream Support for text stream inputs and outputs to transformers. 
 

Uses of Source in javax.xml.transform
 

Methods in javax.xml.transform that return Source
abstract  Source TransformerFactory.getAssociatedStylesheet(Source source, java.lang.String media, java.lang.String title, java.lang.String charset)
          Returns an object encapsulating the <?xml-stylesheet ?> processing instruction from the document that matches the specified criteria.
 Source URIResolver.resolve(java.lang.String href, java.lang.String base)
           
 

Methods in javax.xml.transform with parameters of type Source
abstract  Source TransformerFactory.getAssociatedStylesheet(Source source, java.lang.String media, java.lang.String title, java.lang.String charset)
          Returns an object encapsulating the <?xml-stylesheet ?> processing instruction from the document that matches the specified criteria.
abstract  Templates TransformerFactory.newTemplates(Source stylesheet)
          Returns a pre-compiled stylesheet.
abstract  Transformer TransformerFactory.newTransformer(Source stylesheet)
          Returns a transformer making a specified transform.
abstract  void Transformer.transform(Source source, Result result)
          Apply the appropriate transformation
 

Uses of Source in javax.xml.transform.dom
 

Classes in javax.xml.transform.dom that implement Source
 class DOMSource
          DOM Source
 

Uses of Source in javax.xml.transform.sax
 

Classes in javax.xml.transform.sax that implement Source
 class SAXSource
          Acts as a holder for "pull style" inputs to an XSLT transform.
 

Methods in javax.xml.transform.sax with parameters of type Source
abstract  TransformerHandler SAXTransformerFactory.newTransformerHandler(Source stylesheet)
          Returns a SAX event consumer sending its inputs to some Result after transforming them according to a stylesheet.
abstract  XMLFilter SAXTransformerFactory.newXMLFilter(Source stylesheet)
          Returns a SAX parser that transforms XML data according to a stylesheet before reporting SAX events.
static InputSource SAXSource.sourceToInputSource(Source in)
          Creates a SAX input source from its argument.
 

Uses of Source in javax.xml.transform.stream
 

Classes in javax.xml.transform.stream that implement Source
 class StreamSource
          Stream Source
 



Source code is under GPL (with library exception) in the JAXP project at http://www.gnu.org/software/classpathx/jaxp
This documentation was derived from that source code on 2001-11-20.